Upload folder using huggingface_hub
Browse files- .DS_Store +0 -0
- .gitattributes +5 -0
- README.md +1 -7
- app.R +238 -0
- app.py +57 -0
- data/.DS_Store +0 -0
- data/cbg_geographic_data.csv +0 -0
- data/county/01_county-shape-file.dbf +3 -0
- data/county/01_county-shape-file.prj +1 -0
- data/county/01_county-shape-file.shp +3 -0
- data/county/01_county-shape-file.shx +0 -0
- data/county/df_county.rds +3 -0
- data/county/df_county_info.rds +3 -0
- data/mobility/tn_weekly_mobility_2019.parquet +3 -0
- data/shiny/davidson.metro.rda +0 -0
- data/shiny/davidson_metro.csv +69 -0
- data/shiny/ev_stations_davidson_.csv +99 -0
- data/shiny/ev_stations_davidson_.rda +0 -0
- data/zcta-to-fips-county.rds +3 -0
- google-analytics.html +8 -0
- requirements.txt +6 -0
- rsconnect/shinyapps.io/greenautorwanda/kora.dcf +12 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.gitattributes
CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
data/county/01_county-shape-file.dbf filter=lfs diff=lfs merge=lfs -text
|
37 |
+
data/county/01_county-shape-file.shp filter=lfs diff=lfs merge=lfs -text
|
38 |
+
data/county/df_county.rds filter=lfs diff=lfs merge=lfs -text
|
39 |
+
data/county/df_county_info.rds filter=lfs diff=lfs merge=lfs -text
|
40 |
+
data/zcta-to-fips-county.rds filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
---
|
2 |
title: TN
|
3 |
-
|
4 |
-
colorFrom: green
|
5 |
-
colorTo: gray
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.43.0
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
---
|
11 |
-
|
12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: TN
|
3 |
+
app_file: app.py
|
|
|
|
|
4 |
sdk: gradio
|
5 |
sdk_version: 4.43.0
|
|
|
|
|
6 |
---
|
|
|
|
app.R
ADDED
@@ -0,0 +1,238 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
library(tidyverse)
|
2 |
+
library(data.table)
|
3 |
+
library(dtplyr)
|
4 |
+
library(aws.s3)
|
5 |
+
library(glue)
|
6 |
+
library(conflicted)
|
7 |
+
library(furrr)
|
8 |
+
library(jsonlite)
|
9 |
+
library(arrow)
|
10 |
+
library(ggplot2)
|
11 |
+
library(ggmap)
|
12 |
+
library(maps)
|
13 |
+
library(dplyr)
|
14 |
+
|
15 |
+
library(sf)
|
16 |
+
library(leaflet)
|
17 |
+
conflicts_prefer(dplyr::filter)
|
18 |
+
|
19 |
+
cbg_geographic_data <-
|
20 |
+
read_csv("data/cbg_geographic_data.csv") %>%
|
21 |
+
as_tibble()
|
22 |
+
|
23 |
+
df_weekly <-
|
24 |
+
read_parquet("data/mobility/tn_weekly_mobility_2019.parquet") %>%
|
25 |
+
as_tibble()
|
26 |
+
|
27 |
+
dollar_gen <-
|
28 |
+
df_weekly %>%
|
29 |
+
filter(brands != "") %>%
|
30 |
+
group_by(date,street_address,city,region,postal_code,safegraph_brand_ids, brands) %>%
|
31 |
+
summarize(n = n()) %>%
|
32 |
+
ungroup() %>%
|
33 |
+
arrange(desc(n)) %>%
|
34 |
+
filter(grepl(x = brands, "Dollar Gen"))
|
35 |
+
|
36 |
+
top_categories <- c(
|
37 |
+
"Restaurants and Other Eating Places",
|
38 |
+
"Gasoline Stations",
|
39 |
+
"Building Material and Supplies Dealers" ,
|
40 |
+
"Automotive Parts, Accessories, and Tire Stores",
|
41 |
+
"Automobile Dealers",
|
42 |
+
"Automotive Repair and Maintenance",
|
43 |
+
"Electronics and Appliance Stores",
|
44 |
+
"Wired and Wireless Telecommunications Carriers",
|
45 |
+
"Other Motor Vehicle Dealers",
|
46 |
+
"Offices of Real Estate Agents and Brokers",
|
47 |
+
"Technical and Trade Schools" ,
|
48 |
+
"Accounting, Tax Preparation, Bookkeeping, and Payroll Services",
|
49 |
+
"Employment Services",
|
50 |
+
"Automotive Equipment Rental and Leasing",
|
51 |
+
"Services to Buildings and Dwellings",
|
52 |
+
"Administration of Economic Programs",
|
53 |
+
"Support Activities for Road Transportation",
|
54 |
+
"Personal and Household Goods Repair and Maintenance",
|
55 |
+
"Machinery, Equipment, and Supplies Merchant Wholesalers",
|
56 |
+
"Building Equipment Contractors",
|
57 |
+
"Rail Transportation",
|
58 |
+
"Professional and Commercial Equipment and Supplies Merchant Wholesalers",
|
59 |
+
"Commercial and Industrial Machinery and Equipment Rental and Leasing",
|
60 |
+
"Electric Power Generation, Transmission and Distribution",
|
61 |
+
"Activities Related to Credit Intermediation",
|
62 |
+
"Couriers and Express Delivery Services",
|
63 |
+
"Management of Companies and Enterprises",
|
64 |
+
"Support Activities for Air Transportation",
|
65 |
+
"Freight Transportation Arrangement",
|
66 |
+
"Chemical and Allied Products Merchant Wholesalers",
|
67 |
+
"Specialized Freight Trucking",
|
68 |
+
"Coating, Engraving, Heat Treating, and Allied Activities",
|
69 |
+
"Cable and Other Subscription Programming",
|
70 |
+
"Residential Building Construction",
|
71 |
+
"Clay Product and Refractory Manufacturing",
|
72 |
+
"Motor Vehicle and Motor Vehicle Parts and Supplies Merchant Wholesalers",
|
73 |
+
"Hardware Manufacturing",
|
74 |
+
"Building Finishing Contractors",
|
75 |
+
"Direct Selling Establishments",
|
76 |
+
"Architectural and Structural Metals Manufacturing",
|
77 |
+
"Petroleum and Petroleum Products Merchant Wholesalers",
|
78 |
+
"Foundation, Structure, and Building Exterior Contractors",
|
79 |
+
"Electronic and Precision Equipment Repair and Maintenance"
|
80 |
+
)
|
81 |
+
|
82 |
+
theme_tufte_revised <- function(base_size = 11, base_family = "Gill Sans", ticks = TRUE) {
|
83 |
+
|
84 |
+
ret <- ggplot2::theme_bw(base_family = base_family, base_size = base_size) +
|
85 |
+
ggplot2::theme(
|
86 |
+
axis.line = ggplot2::element_line(color = 'black'),
|
87 |
+
axis.title.x = ggplot2::element_text(vjust = -0.3),
|
88 |
+
axis.title.y = ggplot2::element_text(vjust = 0.8),
|
89 |
+
legend.background = ggplot2::element_blank(),
|
90 |
+
legend.key = ggplot2::element_blank(),
|
91 |
+
legend.title = ggplot2::element_text(face="plain"),
|
92 |
+
panel.background = ggplot2::element_blank(),
|
93 |
+
panel.border = ggplot2::element_blank(),
|
94 |
+
panel.grid = ggplot2::element_blank(),
|
95 |
+
plot.background = ggplot2::element_blank(),
|
96 |
+
strip.background = ggplot2::element_blank()
|
97 |
+
)
|
98 |
+
|
99 |
+
if (!ticks) {
|
100 |
+
ret <- ret + ggplot2::theme(axis.ticks = ggplot2::element_blank())
|
101 |
+
}
|
102 |
+
|
103 |
+
ret
|
104 |
+
}
|
105 |
+
|
106 |
+
# UI
|
107 |
+
ui <- navbarPage(
|
108 |
+
"Kora Customer Map Analysis",
|
109 |
+
|
110 |
+
# Overview Page
|
111 |
+
tabPanel("Overview",
|
112 |
+
sidebarLayout(
|
113 |
+
sidebarPanel(
|
114 |
+
h4("Summary"),
|
115 |
+
textOutput("summary_text")
|
116 |
+
),
|
117 |
+
mainPanel(
|
118 |
+
plotOutput("land_dist_plot"),
|
119 |
+
plotOutput("pop_dist_plot")
|
120 |
+
)
|
121 |
+
)),
|
122 |
+
|
123 |
+
# Category Analysis Page
|
124 |
+
tabPanel("Category Analysis",
|
125 |
+
sidebarLayout(
|
126 |
+
sidebarPanel(
|
127 |
+
selectInput("category", "Choose a Category:", choices = top_categories),
|
128 |
+
h4("Category Summary")
|
129 |
+
),
|
130 |
+
mainPanel(
|
131 |
+
#plotOutput("category_plot"),
|
132 |
+
plotOutput("category_bar_plot")
|
133 |
+
)
|
134 |
+
)),
|
135 |
+
|
136 |
+
# Map Visualization Page
|
137 |
+
tabPanel("Map Visualization",
|
138 |
+
sidebarLayout(
|
139 |
+
sidebarPanel(
|
140 |
+
h4("Map Controls"),
|
141 |
+
checkboxInput("show_counties", "Show County Boundaries", TRUE)
|
142 |
+
),
|
143 |
+
mainPanel(
|
144 |
+
leafletOutput("tn_map"),
|
145 |
+
leafletOutput("davidson_map")
|
146 |
+
)
|
147 |
+
))
|
148 |
+
)
|
149 |
+
|
150 |
+
# Server
|
151 |
+
server <- function(input, output) {
|
152 |
+
|
153 |
+
# Summary Text
|
154 |
+
output$summary_text <- renderText({
|
155 |
+
paste("This Shiny app allows you to explore customer mobility data,",
|
156 |
+
"analyze various categories, and visualize data on an interactive map.")
|
157 |
+
})
|
158 |
+
|
159 |
+
# Plot: Distribution of Land Amount
|
160 |
+
output$land_dist_plot <- renderPlot({
|
161 |
+
ggplot(cbg_geographic_data, aes(x = amount_land)) +
|
162 |
+
geom_histogram(binwidth = 500000, fill = "steelblue", color = "black") +
|
163 |
+
theme_minimal() +
|
164 |
+
labs(title = "Distribution of Land Amount", x = "Land Amount (sq units)", y = "Frequency")
|
165 |
+
})
|
166 |
+
|
167 |
+
# Plot: Distribution of Population
|
168 |
+
output$pop_dist_plot <- renderPlot({
|
169 |
+
ggplot(cbg_geographic_data, aes(x = pop10)) +
|
170 |
+
geom_histogram(binwidth = 100, fill = "darkgreen", color = "black") +
|
171 |
+
theme_minimal() +
|
172 |
+
labs(title = "Distribution of Population in 2010", x = "Population", y = "Frequency")
|
173 |
+
})
|
174 |
+
|
175 |
+
# Plot: Category Analysis (You can replace this logic to suit your actual data)
|
176 |
+
output$category_table <- renderTable({
|
177 |
+
dollar_gen %>%
|
178 |
+
filter(grepl(input$category, brands)) %>%
|
179 |
+
#select(date, street_address, city, region, postal_code, brands, n) %>%
|
180 |
+
arrange(desc(n))
|
181 |
+
})
|
182 |
+
|
183 |
+
# Bar Plot: Population by County
|
184 |
+
output$category_bar_plot <- renderPlot({
|
185 |
+
ggplot(cbg_geographic_data %>%
|
186 |
+
filter(!is.na(cntyname)) %>%
|
187 |
+
filter(pop10 > 3817 ) %>%
|
188 |
+
arrange(desc(pop10)),
|
189 |
+
aes(x = cntyname, y = pop10)) +
|
190 |
+
geom_bar(stat = "identity", fill = "lightblue") +
|
191 |
+
theme_minimal() +
|
192 |
+
coord_flip() +
|
193 |
+
labs(title = "2010 Population by County", x = "County", y = "Population") +
|
194 |
+
theme(
|
195 |
+
text = element_text(size = 14), # Larger font size for all text elements
|
196 |
+
axis.text.x = element_text(size = 12), # Larger font for x-axis labels
|
197 |
+
axis.text.y = element_text(size = 12), # Larger font for y-axis labels
|
198 |
+
axis.title.x = element_text(size = 16, face = "bold"), # Larger, bold x-axis title
|
199 |
+
axis.title.y = element_text(size = 16, face = "bold"), # Larger, bold y-axis title
|
200 |
+
plot.title = element_text(size = 18, face = "bold", hjust = 0.5) # Centered and larger title
|
201 |
+
, height = 600, width = 800)
|
202 |
+
})
|
203 |
+
|
204 |
+
# Tennessee Map
|
205 |
+
output$tn_map <- renderLeaflet({
|
206 |
+
counties_geo <- read_sf("data/county/01_county-shape-file.shp") %>%
|
207 |
+
filter(statefp == "47")
|
208 |
+
|
209 |
+
leaflet(counties_geo) %>%
|
210 |
+
addTiles() %>%
|
211 |
+
addPolygons(color = "black", weight = 1, smoothFactor = 0.5, fillOpacity = 0.2)
|
212 |
+
})
|
213 |
+
|
214 |
+
# Davidson County Map
|
215 |
+
output$davidson_map <- renderLeaflet({
|
216 |
+
|
217 |
+
leaflet(cbg_geographic_data) %>%
|
218 |
+
addTiles() %>%
|
219 |
+
addCircles(lng = ~longitude, lat = ~latitude, weight = 1,
|
220 |
+
radius = ~sqrt(pop10) * 50, popup = ~paste("Zip:", zcta5, "<br> Population:", pop10)) %>%
|
221 |
+
leafem::addMouseCoordinates() %>%
|
222 |
+
setMaxBounds(
|
223 |
+
lng1 = -90.3103, # Westernmost point in Tennessee
|
224 |
+
lat1 = 34.9829, # Southernmost point in Tennessee
|
225 |
+
lng2 = -81.6469, # Easternmost point in Tennessee
|
226 |
+
lat2 = 36.6781 # Northernmost point in Tennessee
|
227 |
+
) %>%
|
228 |
+
setView(
|
229 |
+
lng = -86.6602, # Approximate center of Tennessee
|
230 |
+
lat = 35.8601, # Approximate center of Tennessee
|
231 |
+
zoom = 7 # Adjust zoom level to fit most of the state
|
232 |
+
) %>%
|
233 |
+
leafem::addMouseCoordinates()
|
234 |
+
})
|
235 |
+
}
|
236 |
+
|
237 |
+
# Run the App
|
238 |
+
shinyApp(ui = ui, server = server)
|
app.py
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import pandas as pd
|
3 |
+
import plotly.express as px
|
4 |
+
import folium
|
5 |
+
from folium.plugins import MousePosition
|
6 |
+
from io import BytesIO
|
7 |
+
import geopandas as gpd
|
8 |
+
|
9 |
+
# Load datasets
|
10 |
+
cbg_geographic_data = pd.read_csv("data/cbg_geographic_data.csv")
|
11 |
+
df_weekly = pd.read_parquet("data/mobility/tn_weekly_mobility_2019.parquet")
|
12 |
+
|
13 |
+
# Function to create the population distribution plot
|
14 |
+
def plot_population_distribution():
|
15 |
+
fig = px.histogram(cbg_geographic_data, x='pop10', nbins=100, title="Distribution of Population in 2010")
|
16 |
+
return fig
|
17 |
+
|
18 |
+
# Function to create the land distribution plot
|
19 |
+
def plot_land_distribution():
|
20 |
+
fig = px.histogram(cbg_geographic_data, x='amount_land', nbins=50, title="Distribution of Land Amount")
|
21 |
+
return fig
|
22 |
+
|
23 |
+
# Function to generate the population by county plot
|
24 |
+
def plot_population_by_county():
|
25 |
+
county_data = cbg_geographic_data[cbg_geographic_data['pop10'] > 3817].sort_values(by="pop10", ascending=False)
|
26 |
+
fig = px.bar(county_data, x="cntyname", y="pop10", title="2010 Population by County", orientation='h')
|
27 |
+
return fig
|
28 |
+
|
29 |
+
# Function to create a Folium map with county boundaries
|
30 |
+
def create_map():
|
31 |
+
m = folium.Map(location=[35.8601, -86.6602], zoom_start=7)
|
32 |
+
|
33 |
+
counties_geo = gpd.read_file("data/county/01_county-shape-file.shp")
|
34 |
+
counties_geo = counties_geo[counties_geo['statefp'] == '47'] # Filter for Tennessee
|
35 |
+
|
36 |
+
folium.GeoJson(counties_geo).add_to(m)
|
37 |
+
MousePosition().add_to(m)
|
38 |
+
|
39 |
+
return m._repr_html_()
|
40 |
+
|
41 |
+
# Gradio Interface
|
42 |
+
with gr.Blocks() as app:
|
43 |
+
gr.Markdown("# Kora Customer Map Analysis")
|
44 |
+
|
45 |
+
with gr.Tab("Overview"):
|
46 |
+
gr.Markdown("## Summary: Explore customer mobility data, analyze categories, and visualize data.")
|
47 |
+
land_dist = gr.Plot(plot_land_distribution)
|
48 |
+
pop_dist = gr.Plot(plot_population_distribution)
|
49 |
+
|
50 |
+
with gr.Tab("Category Analysis"):
|
51 |
+
category_input = gr.Dropdown(choices=["Dollar Gen", "Restaurants and Other Eating Places", "Automotive Repair and Maintenance"], label="Choose a Category")
|
52 |
+
category_output = gr.Plot(plot_population_by_county)
|
53 |
+
|
54 |
+
with gr.Tab("Map Visualization"):
|
55 |
+
map_output = gr.HTML(create_map)
|
56 |
+
|
57 |
+
app.launch(server_name="0.0.0.0", server_port=7860)
|
data/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
data/cbg_geographic_data.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/county/01_county-shape-file.dbf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:97b2b4d11f490c6db7c401eb0dc4af9d628739a9f9e25f7aa9c7758639672eeb
|
3 |
+
size 2841233
|
data/county/01_county-shape-file.prj
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
PROJCS["Albers",GEOGCS["GCS_WGS_1984",DATUM["D_unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",29.5],PARAMETER["standard_parallel_2",45.5],PARAMETER["latitude_of_origin",37.5],PARAMETER["central_meridian",-96],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1]]
|
data/county/01_county-shape-file.shp
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:509da7002fc28ac85b78ab608e484ece4aaf8d23a347d4ac91a3d02f39ade109
|
3 |
+
size 2611580
|
data/county/01_county-shape-file.shx
ADDED
Binary file (25.2 kB). View file
|
|
data/county/df_county.rds
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:767f691ec52138f0b36935ac01265dba1e6236ae136896eacc48e29637ce5a0b
|
3 |
+
size 9635591
|
data/county/df_county_info.rds
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7847cfce9dad5e0ae423e443105ef5218dac7c580095a29e14e18322d605efb4
|
3 |
+
size 1288970
|
data/mobility/tn_weekly_mobility_2019.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb7617fcee974fb54731be293bfe1f072f7479788ec5c608e7959e64350209e0
|
3 |
+
size 309618488
|
data/shiny/davidson.metro.rda
ADDED
Binary file (19.4 kB). View file
|
|
data/shiny/davidson_metro.csv
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"","CSAFP","CBSAFP","AFFGEOID","GEOID","NAME","LSAD","ALAND","AWATER","geometry"
|
2 |
+
"1","400","34980","310M400US34980","34980","Nashville-Davidson--Murfreesboro--Franklin, TN","M1",16321635533,197743809,list(list(c(-87.74375, -87.737811, -87.72596, -87.723959, -87.710669, -87.709976, -87.716957, -87.72428, -87.726823, -87.727364, -87.732935, -87.727844, -87.717337, -87.71676, -87.711515, -87.70696, -87.703079, -87.702441, -87.696081, -87.694067, -87.693626, -87.687295, -87.685739, -87.685692, -87.683608, -87.678231, -87.677019, -87.671232, -87.670132, -87.668152, -87.663591, -87.662893, -87.658423, -87.658046, -87.656561, -87.655756, -87.657024, -87.656699, -87.653821, -87.650808, -87.649051, -87.648134,
|
3 |
+
-87.64544, -87.64298, -87.640821, -87.641281, -87.638756, -87.63822, -87.634467, -87.634646, -87.631179, -87.629525, -87.626757, -87.626386, -87.623733, -87.622693, -87.619906, -87.618162, -87.618107, -87.616201, -87.613835, -87.61075, -87.609189, -87.611267, -87.61186, -87.608734, -87.602425, -87.599215, -87.598962, -87.593358, -87.591667, -87.589414, -87.587584, -87.586964, -87.584879, -87.582879, -87.581922, -87.579557, -87.578684, -87.575586, -87.572402, -87.569304, -87.567467, -87.565094, -87.564056,
|
4 |
+
-87.562229, -87.557168, -87.554201, -87.553519, -87.554089, -87.55078, -87.550114, -87.54855, -87.546721, -87.545577, -87.542458, -87.538299, -87.533934, -87.532493, -87.529791, -87.531885, -87.530626, -87.531122, -87.533115, -87.531702, -87.533651, -87.534587, -87.53453, -87.534802, -87.536742, -87.540012, -87.540202, -87.541218, -87.540492, -87.542689, -87.542395, -87.543126, -87.544247, -87.546533, -87.550337, -87.55054, -87.552372, -87.552874, -87.552305, -87.549898, -87.548402, -87.548682, -87.54601,
|
5 |
+
-87.546854, -87.548687, -87.548804, -87.550693, -87.550513, -87.549311, -87.547983, -87.549134, -87.547635, -87.548407, -87.547773, -87.545298, -87.545367, -87.546217, -87.545398, -87.545962, -87.54857, -87.549259, -87.54917, -87.544599, -87.544519, -87.551483, -87.551806, -87.566798, -87.530415, -87.529206, -87.530135, -87.532068, -87.532361, -87.531479, -87.523627, -87.523935, -87.521223, -87.519468, -87.518795, -87.520416, -87.513533, -87.505401, -87.497965, -87.486543, -87.43417, -87.426109,
|
6 |
+
-87.42121, -87.415654, -87.375526, -87.37217, -87.372403, -87.372244, -87.368922, -87.368928, -87.366088, -87.365436, -87.359097, -87.327204, -87.325958, -87.320939, -87.321861, -87.319391, -87.317268, -87.315548, -87.314735, -87.31501, -87.305167, -87.305703, -87.303129, -87.300135, -87.29871, -87.296413, -87.294569, -87.290409, -87.286373, -87.286501, -87.281957, -87.279837, -87.280203, -87.281383, -87.280252, -87.280597, -87.278784, -87.276928, -87.27551, -87.272786, -87.268285, -87.266524, -87.265002,
|
7 |
+
-87.263871, -87.262661, -87.257884, -87.25557, -87.256852, -87.255085, -87.254531, -87.254883, -87.253922, -87.248891, -87.249988, -87.221847, -87.215057, -87.205617, -87.203975, -87.20517, -87.200578, -87.200807, -87.19721, -87.195607, -87.193001, -87.183336, -87.1794, -87.178857, -87.179434, -87.18214, -87.18236, -87.179858, -87.179908, -87.17851, -87.179549, -87.174805, -87.171307, -87.168718, -87.16795, -87.166711, -87.167354, -87.164327, -87.163242, -87.16304, -87.163701, -87.162729, -87.157889,
|
8 |
+
-87.150974, -87.149487, -87.148387, -87.148602, -87.151503, -87.152239, -87.151455, -87.151642, -87.150062, -87.150251, -87.149709, -87.150276, -87.14703, -87.128026, -87.12577, -87.122691, -87.120443, -87.119598, -87.128677, -87.127528, -87.125003, -87.123982, -87.120657, -87.117643, -87.113244, -87.118626, -87.116147, -87.120063, -87.121522, -87.121936, -87.120792, -87.118449, -87.117722, -87.119002, -87.122305, -87.126515, -87.129672, -87.131443, -87.131808, -87.131042, -87.13158, -87.132644,
|
9 |
+
-87.135689, -87.1399, -87.141268, -87.137368, -87.137088, -87.13796, -87.141954, -87.14779, -87.150004, -87.150233, -87.149618, -87.147965, -87.144053, -87.14158, -87.136828, -87.133346, -87.132522, -87.132726, -87.134081, -87.134335, -87.133632, -87.131849, -87.129755, -87.122028, -87.12099, -87.131292, -87.126771, -87.125932, -87.117437, -87.114976, -87.0608458150142, -87.011522, -86.9874650905764, -86.9808875416196, -86.9197909615982, -86.906583, -86.906023, -86.854268, -86.8540381710266, -86.843328084098,
|
10 |
+
-86.833155, -86.818405, -86.816186, -86.813037, -86.7632948135703, -86.75892, -86.713786, -86.6991175660171, -86.6790728306451, -86.6530177649191, -86.606394, -86.605042, -86.589906, -86.5714468167198, -86.5711861865942, -86.564143, -86.5639157484191, -86.5638935684764, -86.5550796576635, -86.551292, -86.5503031509311, -86.550054, -86.5499006812918, -86.5457245615894, -86.543388, -86.543777, -86.536280306143, -86.507771, -86.4739178412557, -86.473497, -86.473413, -86.47219, -86.468497, -86.4596729894085,
|
11 |
+
-86.4113861435174, -86.4110524007623, -86.374991, -86.373784, -86.359073, -86.333051, -86.2961854761252, -86.293357, -86.2644201069219, -86.222151, -86.219081, -86.21641, -86.216183, -86.2054686100012, -86.204859, -86.197573, -86.1650459242246, -86.12811632196, -86.0943348700601, -86.081944, -86.080666, -86.038366, -86.033139, -86.03277, -86.0029728589817, -85.9791244773022, -85.9764138326519, -85.9758456222591, -85.9729214486467, -85.959981, -85.9207280166585, -85.9194944925774, -85.873857, -85.832172,
|
12 |
+
-85.8319733623593, -85.80149, -85.788645, -85.7886129951215, -85.788695, -85.788007, -85.791408, -85.793011, -85.796462, -85.797278, -85.797667, -85.806241, -85.807145, -85.811427, -85.812504, -85.812979, -85.813885, -85.820864, -85.821032, -85.823337, -85.827782, -85.828026, -85.835768, -85.831245, -85.831605, -85.829747, -85.829218, -85.829295, -85.828584, -85.829879, -85.832585, -85.832889, -85.836157, -85.837353, -85.846483, -85.837995, -85.837098, -85.835506, -85.835081, -85.834591, -85.833408,
|
13 |
+
-85.82766, -85.823903, -85.821098, -85.817007, -85.813443, -85.810027, -85.80752, -85.806436, -85.804544, -85.803693, -85.797172, -85.791603, -85.78961, -85.787742, -85.787091, -85.784225, -85.783553, -85.783721, -85.780148, -85.780455, -85.782338, -85.786487, -85.782541, -85.781146, -85.782102, -85.778634, -85.783127, -85.783102, -85.781477, -85.782939, -85.786212, -85.798833, -85.80393, -85.805488, -85.809168, -85.806661, -85.803989, -85.801083, -85.799454, -85.799459, -85.798803, -85.799754, -85.799779,
|
14 |
+
-85.800828, -85.799329, -85.795517, -85.795509, -85.798019, -85.799469, -85.800487, -85.80479, -85.805241, -85.803603, -85.803052, -85.799806, -85.800399, -85.798782, -85.795786, -85.793009, -85.792891, -85.791253, -85.790664, -85.786863, -85.787172, -85.784165, -85.783732, -85.783956, -85.785735, -85.799212, -85.803631, -85.80451, -85.807249, -85.806142, -85.803975, -85.805127, -85.802248, -85.801939, -85.801617, -85.804571, -85.807415, -85.810612, -85.814479, -85.821191, -85.823817, -85.827526,
|
15 |
+
-85.828647, -85.835125, -85.83827, -85.839026, -85.839837, -85.84242, -85.852916, -85.85466, -85.85497, -85.852297, -85.852784, -85.856128, -85.856392, -85.859939, -85.861379, -85.861611, -85.864034, -85.86356, -85.865045, -85.870515, -85.871303, -85.87977, -85.883749, -85.884097, -85.887055, -85.886287, -85.888746, -85.893692, -85.894357, -85.892081, -85.893039, -85.892767, -85.895607, -85.896938, -85.902646, -85.904311, -85.904014, -85.910103, -85.911501, -85.91058, -85.910875, -85.914381, -85.915583,
|
16 |
+
-85.915644, -85.914524, -85.913201, -85.913333, -85.911617, -85.912906, -85.911267, -85.915005, -85.915077, -85.917289, -85.923535, -85.924889, -85.928272, -85.930167, -85.930511, -85.932001, -85.93789, -85.937085, -85.935515, -85.935551, -85.938143, -85.940037, -85.948414, -85.950266, -85.952849, -85.955387, -85.957086, -85.959279, -85.960157, -85.961315, -85.961589, -85.964574, -85.965505, -85.967305, -85.967739, -85.969221, -85.972286, -85.975904, -85.978511, -85.979903, -85.982402, -85.98324,
|
17 |
+
-85.983496, -85.984706, -85.986083, -85.992138, -85.991434, -85.991725, -85.993394, -85.996538, -86.002209, -86.002566, -86.001645, -86.004918, -86.006425, -86.005829, -86.005798, -86.0092, -86.012302, -86.013396, -86.016222, -86.017444, -86.019256, -86.024619, -86.026039, -86.027625, -86.0281, -86.039297, -86.039555, -86.04292, -86.042684, -86.056086, -86.059706, -86.059623, -86.059706, -86.062231, -86.060993, -86.061902, -86.061881, -86.060323, -86.061393, -86.059457, -86.06028, -86.062809, -86.063413,
|
18 |
+
-86.0625, -86.059275, -86.057384, -86.054715, -86.053018, -86.054315, -86.054832, -86.05674, -86.056945, -86.055853, -86.056452, -86.05122, -86.051299, -86.047374, -86.047846, -86.048215, -86.052665, -86.053437, -86.048293, -86.048154, -86.046033, -86.046527, -86.042691, -86.038707, -86.035778, -86.036559, -86.034475, -86.03474, -86.035148, -86.037397, -86.039389, -86.040746, -86.041072, -86.038586, -86.038803, -86.037043, -86.033771, -86.029065, -86.028659, -86.024882, -86.026513, -86.026539, -86.014849,
|
19 |
+
-85.999988, -85.997389, -85.994626, -85.992132, -85.943961, -85.91612, -85.909321, -85.908042, -85.897398, -85.893909, -85.892437, -85.89062, -85.88921, -85.88923, -85.890631, -85.893524, -85.896166, -85.897178, -85.895294, -85.894269, -85.889589, -85.885768, -85.885156, -85.885556, -85.885595, -85.895674, -85.897859, -85.913867, -85.929707, -85.932844, -85.942133, -85.941601, -85.935739, -85.934651, -85.93475, -85.939473, -85.94031, -85.943119, -85.945214, -85.951842, -85.954798, -85.963571, -85.969994,
|
20 |
+
-85.972312, -85.984891, -85.987838, -85.988314, -85.986393, -85.98963, -85.997426, -85.997732, -85.993376, -85.993655, -85.986835, -85.986974, -85.991257, -85.99195, -85.992775, -85.990539, -85.990548, -85.989683, -85.985023, -85.986525, -85.986916, -85.985238, -85.985062, -85.994211, -85.994585, -85.996112, -85.994462, -86.00157, -86.001752, -86.004405, -86.004146, -86.00817, -86.008779, -86.012871, -86.01314, -86.015261, -86.032238, -86.033038, -86.036952, -86.037896, -86.043875, -86.052669, -86.053246,
|
21 |
+
-86.066255, -86.070003, -86.071796, -86.08889, -86.120263, -86.132327, -86.133958, -86.141924, -86.143394, -86.148255, -86.151067, -86.150696, -86.154322, -86.154196, -86.1599, -86.159635, -86.165858, -86.165826, -86.170729, -86.170192, -86.173772, -86.175454, -86.177063, -86.181667, -86.181425, -86.18484, -86.187119, -86.189204, -86.19022, -86.189701, -86.191147, -86.189291, -86.19115, -86.191852, -86.197883, -86.199864, -86.203583, -86.204588, -86.207147, -86.208239, -86.210345, -86.215482, -86.217361,
|
22 |
+
-86.217924, -86.219584, -86.221631, -86.223757, -86.226178, -86.227273, -86.225318, -86.230521, -86.232425, -86.233584, -86.238715, -86.241118, -86.242392, -86.245406, -86.246817, -86.244737, -86.243982, -86.245554, -86.243938, -86.243873, -86.24238, -86.241672, -86.243719, -86.2479, -86.249052, -86.247944, -86.244654, -86.243762, -86.240844, -86.24093, -86.242494, -86.243842, -86.243645, -86.244919, -86.245682, -86.244268, -86.244866, -86.242278, -86.241443, -86.24325, -86.24321, -86.245165, -86.245767,
|
23 |
+
-86.249994, -86.25766, -86.257478, -86.260577, -86.262714, -86.263763, -86.266556, -86.268368, -86.268898, -86.271483, -86.273309, -86.274769, -86.27981, -86.280924, -86.282828, -86.284018, -86.285457, -86.287584, -86.286466, -86.286923, -86.289831, -86.289916, -86.293525, -86.295266, -86.297316, -86.301335, -86.305235, -86.306493, -86.30547, -86.302783, -86.302048, -86.300724, -86.300321, -86.303177, -86.304128, -86.3076, -86.309328, -86.310374, -86.317209, -86.318896, -86.321324, -86.325368, -86.327852,
|
24 |
+
-86.329587, -86.334075, -86.337005, -86.33603, -86.338262, -86.340438, -86.34194, -86.345069, -86.343776, -86.347282, -86.350624, -86.352734, -86.354825, -86.354374, -86.35146, -86.350702, -86.352169, -86.359493, -86.359716, -86.362826, -86.363379, -86.365601, -86.366725, -86.369035, -86.373396, -86.376464, -86.377841, -86.378642, -86.377754, -86.374992, -86.374399, -86.375607, -86.373011, -86.374271, -86.379655, -86.382648, -86.382831, -86.384299, -86.387762, -86.38965, -86.394164, -86.395498, -86.394443,
|
25 |
+
-86.39509, -86.3987, -86.402726, -86.405157, -86.406722, -86.409525, -86.411401, -86.413678, -86.416866, -86.4179, -86.417275, -86.415369, -86.415338, -86.413847, -86.413429, -86.418902, -86.418173, -86.416788, -86.416625, -86.424931, -86.424145, -86.430247, -86.432679, -86.438418, -86.442338, -86.444741, -86.445134, -86.455038, -86.456052, -86.462181, -86.461353, -86.473206, -86.472088, -86.477702, -86.487975, -86.488394, -86.494006, -86.493652, -86.499797, -86.499448, -86.501899, -86.501608, -86.505373,
|
26 |
+
-86.504837, -86.509482, -86.508794, -86.513157, -86.513078, -86.519442, -86.519084, -86.516676, -86.515516, -86.520208, -86.520432, -86.523293, -86.523209, -86.523378, -86.526643, -86.526878, -86.537514, -86.53734, -86.543685, -86.543116, -86.568082, -86.581148, -86.600362, -86.619446, -86.619515, -86.622138, -86.621912, -86.623605, -86.623915, -86.636362, -86.639436, -86.642389, -86.641978, -86.651389, -86.651194, -86.661619, -86.661346, -86.667188, -86.667074, -86.674255, -86.673683, -86.682628,
|
27 |
+
-86.682126, -86.680652, -86.686193, -86.69554, -86.695937, -86.697399, -86.69692, -86.731098, -86.731191, -86.732926, -86.734354, -86.736132, -86.737848, -86.740705, -86.740639, -86.742656, -86.743376, -86.741643, -86.746606, -86.746408, -86.74676, -86.749998, -86.750652, -86.751328, -86.751651, -86.752794, -86.752207, -86.754047, -86.760726, -86.760105, -86.767908, -86.767367, -86.769278, -86.769524, -86.773169, -86.772643, -86.774347, -86.774677, -86.782284, -86.782016, -86.793342, -86.794332,
|
28 |
+
-86.792579, -86.793424, -86.795243, -86.794866, -86.796727, -86.796935, -86.802792, -86.802266, -86.803369, -86.803233, -86.811864, -86.816961, -86.820535, -86.821716, -86.823127, -86.8224, -86.82238, -86.823765, -86.824795, -86.82843, -86.833917, -86.835988, -86.837104, -86.839846, -86.840755, -86.827394, -86.827501, -86.829905, -86.836381, -86.836789, -86.834354, -86.840489, -86.841704, -86.838216, -86.839048, -86.84213, -86.8381, -86.849573, -86.87128, -86.872777, -86.870568, -86.875589, -86.877143,
|
29 |
+
-86.878332, -86.878554, -86.879718, -86.880006, -86.880584, -86.889398, -86.895502, -86.924503, -86.919503, -86.919003, -86.921403, -86.922103, -86.927403, -86.927802, -86.930205, -86.930472, -86.932635, -86.932203, -86.936103, -86.936403, -86.955004, -86.956304, -86.960804, -86.960565, -86.964911, -86.968204, -86.970204, -86.971404, -86.972204, -86.974704, -86.976004, -86.978504, -86.979704, -86.981805, -86.982905, -86.984405, -86.985105, -86.987005, -86.986105, -86.985805, -86.986705, -86.990905,
|
30 |
+
-86.992005, -86.993432, -86.995604, -86.998805, -86.999605, -87.001413, -87.005419, -87.00923, -87.011852, -87.013294, -87.013917, -87.017567, -87.01804, -87.016207, -87.019024, -87.018521, -87.01949, -87.021499, -87.022205, -87.0243, -87.025384, -87.025608, -87.030114, -87.032728, -87.037003, -87.038762, -87.042516, -87.043864, -87.045321, -87.047796, -87.050483, -87.050721, -87.053221, -87.053256, -87.055944, -87.058199, -87.05918, -87.062035, -87.062754, -87.066826, -87.067252, -87.070459, -87.071771,
|
31 |
+
-87.075621, -87.077369, -87.078229, -87.080093, -87.081405, -87.083361, -87.084366, -87.087327, -87.093968, -87.094477, -87.094708, -87.096424, -87.096574, -87.101765, -87.102393, -87.101706, -87.103331, -87.106014, -87.107098, -87.109204, -87.110577, -87.113641, -87.114703, -87.117253, -87.118025, -87.117809, -87.119261, -87.120883, -87.122529, -87.123386, -87.127671, -87.129112, -87.130036, -87.133875, -87.136728, -87.137289, -87.13834, -87.140858, -87.143202, -87.146867, -87.149904, -87.150267,
|
32 |
+
-87.15242, -87.152277, -87.154952, -87.155812, -87.157516, -87.157918, -87.160263, -87.163684, -87.165744, -87.193227, -87.206578, -87.217328, -87.226272, -87.225723, -87.227932, -87.247926, -87.250012, -87.279531, -87.295242, -87.294534, -87.293813, -87.293682, -87.28981, -87.28896, -87.282589, -87.281483, -87.279299, -87.276791, -87.274764, -87.279743, -87.279344, -87.276786, -87.276727, -87.280105, -87.280319, -87.283376, -87.282817, -87.2814, -87.278985, -87.2705, -87.269432, -87.27776, -87.282393,
|
33 |
+
-87.282332, -87.283677, -87.28364, -87.285602, -87.284732, -87.286371, -87.286075, -87.285953, -87.290586, -87.289872, -87.29719, -87.303984, -87.313195, -87.313288, -87.317721, -87.317144, -87.314884, -87.319283, -87.322744, -87.324531, -87.327554, -87.327399, -87.338357, -87.338524, -87.352305, -87.353254, -87.353241, -87.354349, -87.354146, -87.352918, -87.352894, -87.351774, -87.351773, -87.349454, -87.345346, -87.341637, -87.337106, -87.338182, -87.337196, -87.334265, -87.332768, -87.331869,
|
34 |
+
-87.331973, -87.332908, -87.333366, -87.332531, -87.331606, -87.339654, -87.339232, -87.342215, -87.344068, -87.346223, -87.348243, -87.348688, -87.351285, -87.352427, -87.352393, -87.35425, -87.356639, -87.357709, -87.357379, -87.418709, -87.44832, -87.452064, -87.451813, -87.452344, -87.457912, -87.458129, -87.459587, -87.50779, -87.526441, -87.52999, -87.529671, -87.541796, -87.549422, -87.549951, -87.554366, -87.554638, -87.56277, -87.56392, -87.565576, -87.56552, -87.567259, -87.56841, -87.569336,
|
35 |
+
-87.570739, -87.577136, -87.581288, -87.583421, -87.586867, -87.591607, -87.594852, -87.599138, -87.600721, -87.602106, -87.604086, -87.605895, -87.60701, -87.609141, -87.611132, -87.613376, -87.618044, -87.618933, -87.620711, -87.623391, -87.622492, -87.618928, -87.61758, -87.617736, -87.618123, -87.620671, -87.62425, -87.627139, -87.626062, -87.628959, -87.63168, -87.632719, -87.632889, -87.635358, -87.638022, -87.640182, -87.641332, -87.644531, -87.646848, -87.650793, -87.656086, -87.658189, -87.660235,
|
36 |
+
-87.661749, -87.660767, -87.660991, -87.66376, -87.665489, -87.667394, -87.671363, -87.67231, -87.673398, -87.675758, -87.676483, -87.679732, -87.681024, -87.683879, -87.685279, -87.686891, -87.688176, -87.692921, -87.693858, -87.697091, -87.698285, -87.700945, -87.702668, -87.704248, -87.707489, -87.708057, -87.710556, -87.711889, -87.714457, -87.716515, -87.71905, -87.7211, -87.724306, -87.726062, -87.726113, -87.72757, -87.729606, -87.732977, -87.733083, -87.73574, -87.739199, -87.741955, -87.74375,
|
37 |
+
35.663952, 35.702342, 35.701485, 35.704263, 35.703616, 35.71012, 35.710365, 35.728996, 35.729308, 35.725628, 35.72626, 35.761963, 35.834782, 35.83875, 35.87488, 35.905884, 35.904401, 35.908149, 35.911776, 35.909963, 35.912039, 35.910992, 35.911542, 35.91296, 35.916076, 35.916328, 35.916877, 35.917179, 35.916398, 35.917632, 35.916573, 35.915442, 35.915511, 35.918038, 35.91818, 35.919718, 35.92053, 35.921549, 35.921316, 35.922643, 35.922597, 35.923009, 35.921883, 35.923488, 35.923824, 35.924997, 35.925662,
|
38 |
+
35.927448, 35.928302, 35.930107, 35.931086, 35.930567, 35.932572, 35.934447, 35.93477, 35.936694, 35.937657, 35.940108, 35.941551, 35.943657, 35.944213, 35.944315, 35.946391, 35.947462, 35.949981, 35.949685, 35.95003, 35.950833, 35.951864, 35.952964, 35.952163, 35.952462, 35.953378, 35.95079, 35.947814, 35.948684, 35.950333, 35.951799, 35.951113, 35.951159, 35.949144, 35.947747, 35.947646, 35.948775, 35.947894, 35.948253, 35.950665, 35.953805, 35.955882, 35.957443, 35.959094, 35.960792, 35.961794,
|
39 |
+
35.961886, 35.963418, 35.966171, 35.96598, 35.968023, 35.96946, 35.975647, 35.979286, 35.980052, 35.982734, 35.98693, 35.989298, 35.990646, 35.99048, 35.993074, 35.995245, 35.996217, 35.996471, 35.998744, 36.000708, 36.002958, 36.004969, 36.006942, 36.008674, 36.008933, 36.011472, 36.014255, 36.015285, 36.016007, 36.016237, 36.017211, 36.018175, 36.020316, 36.021938, 36.022781, 36.028926, 36.029845, 36.030839, 36.032192, 36.035784, 36.038099, 36.039554, 36.041056, 36.042566, 36.043772, 36.045135,
|
40 |
+
36.046641, 36.049632, 36.05126, 36.05558, 36.056272, 36.05631, 36.0576, 36.060078, 36.093575, 36.094158, 36.134017, 36.137514, 36.177857, 36.232375, 36.240333, 36.240763, 36.243028, 36.246745, 36.249701, 36.24889, 36.251242, 36.272685, 36.272683, 36.279227, 36.279236, 36.334713, 36.33399, 36.332994, 36.331915, 36.32683, 36.326056, 36.325418, 36.325003, 36.320952, 36.320583, 36.321232, 36.322092, 36.321999, 36.323508, 36.323488, 36.319807, 36.319164, 36.31593, 36.323582, 36.32318, 36.316389, 36.316212,
|
41 |
+
36.314965, 36.31524, 36.317316, 36.321654, 36.319252, 36.313854, 36.312442, 36.314207, 36.317147, 36.317747, 36.317104, 36.317489, 36.320081, 36.321933, 36.342875, 36.348574, 36.351135, 36.352167, 36.352995, 36.354166, 36.355439, 36.355798, 36.353275, 36.35335, 36.355814, 36.356308, 36.353755, 36.354047, 36.354879, 36.359525, 36.362932, 36.364245, 36.365785, 36.367375, 36.370636, 36.373393, 36.376427, 36.37792, 36.394285, 36.395949, 36.409471, 36.410285, 36.412422, 36.411804, 36.410594, 36.410277,
|
42 |
+
36.408595, 36.407688, 36.40651, 36.406611, 36.408216, 36.409727, 36.411464, 36.41279, 36.417042, 36.418081, 36.419821, 36.424001, 36.425178, 36.427616, 36.426557, 36.427742, 36.427264, 36.425132, 36.423063, 36.42136, 36.418961, 36.416852, 36.413298, 36.415556, 36.416644, 36.417481, 36.4193, 36.422773, 36.424648, 36.426977, 36.430912, 36.433364, 36.437761, 36.440199, 36.442873, 36.445037, 36.445962, 36.451227, 36.453076, 36.455711, 36.45546, 36.461107, 36.46195, 36.468887, 36.48406, 36.488568, 36.510943,
|
43 |
+
36.510501, 36.523046, 36.523667, 36.539212, 36.538814, 36.53998, 36.54247, 36.545076, 36.547752, 36.549641, 36.550386, 36.549882, 36.547295, 36.546523, 36.548066, 36.549678, 36.552214, 36.553727, 36.553646, 36.552015, 36.553836, 36.554908, 36.55855, 36.559654, 36.562058, 36.563629, 36.563109, 36.564016, 36.567702, 36.568587, 36.568537, 36.567117, 36.565184, 36.563124, 36.562763, 36.56372, 36.566521, 36.569013, 36.570564, 36.57279, 36.573144, 36.572283, 36.609369, 36.613544, 36.621995, 36.621443,
|
44 |
+
36.628989, 36.628118, 36.642414, 36.6432171572868, 36.643949, 36.6444776426698, 36.6446221821441, 36.6459647593893, 36.646255, 36.646302, 36.646884, 36.6468875487257, 36.647052920219, 36.64721, 36.647639, 36.647722, 36.647647, 36.6489071684793, 36.649018, 36.649341, 36.6497188017766, 36.6502350761549, 36.6509061532538, 36.652107, 36.652125, 36.652486, 36.6388624735904, 36.6386701193922, 36.633472, 36.6335518059594, 36.6335595950872, 36.6366548545611, 36.637985, 36.643442041065, 36.644817, 36.6447956789015,
|
45 |
+
36.6442149313821, 36.64389, 36.640536, 36.6430155347204, 36.652445, 36.6516805037385, 36.651671, 36.651676, 36.651763, 36.651841, 36.651648677223, 36.6505962464493, 36.6505889723948, 36.649803, 36.650126, 36.649845, 36.648778, 36.6455998415201, 36.645356, 36.6435415008343, 36.640891, 36.640824, 36.640595, 36.640527, 36.6397833130926, 36.639741, 36.639363, 36.6378116000666, 36.6360502187826, 36.634438990568, 36.633848, 36.63394, 36.630804, 36.630413, 36.630367, 36.6294475701586, 36.6287116970837,
|
46 |
+
36.6286280565901, 36.6286105237137, 36.6285202945041, 36.628121, 36.6260795932796, 36.6260154421213, 36.623642, 36.622046, 36.6220484083568, 36.622418, 36.621846, 36.6218452013294, 36.619368, 36.615297, 36.614482, 36.613335, 36.613541, 36.608877, 36.604329, 36.555926, 36.552475, 36.516517, 36.512449, 36.508635, 36.499473, 36.455925, 36.4554, 36.440914, 36.413016, 36.411836, 36.351848, 36.351187, 36.348607, 36.348543, 36.347902, 36.343787, 36.34228, 36.343124, 36.343515, 36.342054, 36.340878, 36.341731,
|
47 |
+
36.288167, 36.281787, 36.280805, 36.277137, 36.274629, 36.266957, 36.2637, 36.255272, 36.251278, 36.250057, 36.249152, 36.248814, 36.249064, 36.250067, 36.251166, 36.254854, 36.255669, 36.253939, 36.251326, 36.247629, 36.247183, 36.245731, 36.243638, 36.242266, 36.239806, 36.238011, 36.235526, 36.234625, 36.23011, 36.23045, 36.225538, 36.224727, 36.221152, 36.219808, 36.218468, 36.214312, 36.211426, 36.210696, 36.21154, 36.211197, 36.20951, 36.206598, 36.203944, 36.204232, 36.206278, 36.206309, 36.203521,
|
48 |
+
36.201351, 36.199006, 36.197047, 36.195032, 36.191412, 36.191738, 36.187629, 36.186657, 36.185119, 36.182812, 36.183044, 36.17993, 36.179808, 36.174731, 36.174404, 36.172019, 36.171695, 36.174192, 36.173504, 36.179711, 36.179541, 36.180483, 36.180198, 36.17641, 36.176012, 36.174819, 36.173086, 36.172354, 36.170252, 36.170344, 36.165194, 36.147807, 36.14634, 36.144904, 36.142425, 36.140604, 36.140051, 36.138689, 36.134127, 36.131582, 36.13047, 36.127989, 36.124177, 36.123099, 36.122342, 36.122639,
|
49 |
+
36.128217, 36.128855, 36.128001, 36.125059, 36.119548, 36.120287, 36.119315, 36.11641, 36.114544, 36.111235, 36.108025, 36.106637, 36.105057, 36.102141, 36.09997, 36.097658, 36.094625, 36.093751, 36.095724, 36.097522, 36.097497, 36.09803, 36.098927, 36.100923, 36.105416, 36.102119, 36.104626, 36.104963, 36.108365, 36.110723, 36.113578, 36.11446, 36.116275, 36.114694, 36.115318, 36.116422, 36.11672, 36.115685, 36.112972, 36.112061, 36.112249, 36.109628, 36.108184, 36.107365, 36.104835, 36.103359,
|
50 |
+
36.09936, 36.100067, 36.097528, 36.097158, 36.099183, 36.102506, 36.102834, 36.101928, 36.104047, 36.106805, 36.109452, 36.108554, 36.109093, 36.10713, 36.10693, 36.105018, 36.103844, 36.105849, 36.101991, 36.102805, 36.106073, 36.107727, 36.107959, 36.110621, 36.110955, 36.110733, 36.108629, 36.108826, 36.106479, 36.104993, 36.101406, 36.099081, 36.097567, 36.097546, 36.099095, 36.095398, 36.094253, 36.09328, 36.09083, 36.09018, 36.087095, 36.087542, 36.09312, 36.093896, 36.093924, 36.087048, 36.087555,
|
51 |
+
36.086813, 36.084304, 36.082019, 36.082705, 36.085635, 36.089154, 36.088741, 36.089962, 36.083446, 36.083534, 36.083855, 36.084332, 36.084694, 36.083692, 36.084225, 36.083352, 36.087601, 36.086035, 36.086379, 36.089279, 36.090441, 36.086024, 36.085603, 36.084445, 36.082006, 36.08211, 36.078565, 36.076223, 36.0762, 36.074027, 36.073609, 36.0715, 36.07119, 36.070052, 36.069115, 36.068821, 36.0724, 36.072177, 36.071403, 36.070583, 36.06786, 36.066061, 36.06214, 36.061289, 36.05929, 36.059065, 36.05783,
|
52 |
+
36.057493, 36.053283, 36.050003, 36.049225, 36.043793, 36.043215, 36.04202, 36.042013, 36.036501, 36.032565, 36.032406, 36.031399, 36.026366, 36.026217, 36.022306, 36.016322, 36.011906, 36.009395, 36.008765, 36.006416, 36.006086, 36.004384, 36.004022, 36.004633, 36.000546, 36.001354, 35.99981, 35.998561, 35.99258, 35.96106, 35.954023, 35.952983, 35.950945, 35.948946, 35.902511, 35.879254, 35.873562, 35.8725, 35.859491, 35.855596, 35.859093, 35.857544, 35.857543, 35.854176, 35.852794, 35.849938, 35.851135,
|
53 |
+
35.846822, 35.846119, 35.844095, 35.842771, 35.84283, 35.839658, 35.837304, 35.830539, 35.829877, 35.830222, 35.822506, 35.802503, 35.798534, 35.786779, 35.786649, 35.785493, 35.784672, 35.781507, 35.781814, 35.780266, 35.781092, 35.77778, 35.770109, 35.767081, 35.761329, 35.753541, 35.750619, 35.734553, 35.734879, 35.731541, 35.731016, 35.711356, 35.711955, 35.709926, 35.709136, 35.705821, 35.703961, 35.69706, 35.697406, 35.694071, 35.694103, 35.69104, 35.680777, 35.678556, 35.666592, 35.666695,
|
54 |
+
35.664645, 35.664427, 35.660108, 35.660453, 35.657468, 35.656946, 35.653725, 35.652628, 35.654062, 35.654514, 35.65695, 35.657203, 35.653435, 35.654124, 35.651889, 35.649433, 35.65114, 35.645887, 35.64623, 35.643001, 35.647321, 35.648047, 35.643989, 35.645348, 35.645841, 35.645477, 35.646823, 35.660929, 35.661571, 35.661774, 35.661488, 35.661652, 35.664279, 35.666971, 35.671003, 35.672021, 35.673872, 35.674698, 35.676293, 35.676856, 35.681545, 35.681722, 35.683791, 35.683611, 35.684264, 35.686985,
|
55 |
+
35.689036, 35.691087, 35.691183, 35.689871, 35.692095, 35.692342, 35.694671, 35.696414, 35.698886, 35.699272, 35.701868, 35.703247, 35.701769, 35.702944, 35.704012, 35.70379, 35.702402, 35.703043, 35.700935, 35.702035, 35.70448, 35.706178, 35.706429, 35.701969, 35.70014, 35.697696, 35.695164, 35.694263, 35.693009, 35.691162, 35.689923, 35.69074, 35.689667, 35.688899, 35.685428, 35.68456, 35.681601, 35.679727, 35.677509, 35.675652, 35.674151, 35.668464, 35.666725, 35.666492, 35.66504, 35.662406, 35.661795,
|
56 |
+
35.660138, 35.657983, 35.656472, 35.654728, 35.650853, 35.649748, 35.648756, 35.645644, 35.644053, 35.642476, 35.639592, 35.63644, 35.634339, 35.633145, 35.631913, 35.631929, 35.632116, 35.631921, 35.634286, 35.637897, 35.637884, 35.63956, 35.639769, 35.641113, 35.642631, 35.64296, 35.64259, 35.643786, 35.645892, 35.648615, 35.648382, 35.649084, 35.648315, 35.648252, 35.645144, 35.643409, 35.643869, 35.644844, 35.647273, 35.647449, 35.64658, 35.645713, 35.646375, 35.64868, 35.651505, 35.651394, 35.653996,
|
57 |
+
35.654371, 35.655736, 35.657806, 35.659553, 35.659196, 35.659517, 35.661587, 35.660816, 35.662037, 35.662348, 35.661875, 35.662395, 35.660863, 35.658059, 35.659178, 35.662149, 35.663093, 35.663168, 35.664259, 35.663744, 35.660917, 35.658723, 35.660666, 35.660482, 35.657939, 35.655561, 35.654772, 35.653245, 35.650237, 35.650433, 35.652161, 35.65228, 35.651431, 35.650926, 35.648471, 35.647274, 35.645812, 35.647031, 35.645303, 35.642823, 35.641479, 35.639174, 35.637539, 35.6359, 35.6311, 35.63008, 35.629868,
|
58 |
+
35.628568, 35.626777, 35.62634, 35.626094, 35.627194, 35.62659, 35.627778, 35.625513, 35.623204, 35.622072, 35.618571, 35.622197, 35.62292, 35.623144, 35.622699, 35.623177, 35.625559, 35.628259, 35.630403, 35.633088, 35.63493, 35.637029, 35.640023, 35.640617, 35.647178, 35.647159, 35.649636, 35.649772, 35.652976, 35.649736, 35.646908, 35.645231, 35.646229, 35.646177, 35.643532, 35.644548, 35.637154, 35.63785, 35.645176, 35.646321, 35.654732, 35.655404, 35.656495, 35.657708, 35.658048, 35.660847,
|
59 |
+
35.66149, 35.664556, 35.664993, 35.667149, 35.667624, 35.670804, 35.67136, 35.675598, 35.676134, 35.676998, 35.677751, 35.680867, 35.680586, 35.688396, 35.688519, 35.685892, 35.686053, 35.688127, 35.689855, 35.689974, 35.69139, 35.692235, 35.693266, 35.694278, 35.697617, 35.699244, 35.699354, 35.701578, 35.702676, 35.701079, 35.701392, 35.702808, 35.702833, 35.702823, 35.701982, 35.6859, 35.686235, 35.689037, 35.690092, 35.691586, 35.692664, 35.694844, 35.695283, 35.696357, 35.696962, 35.703306,
|
60 |
+
35.704097, 35.706981, 35.70957, 35.710051, 35.710864, 35.707368, 35.707408, 35.705431, 35.70676, 35.703905, 35.703839, 35.698849, 35.698944, 35.700152, 35.700557, 35.70168, 35.703835, 35.704335, 35.707591, 35.707889, 35.705665, 35.703164, 35.703486, 35.699888, 35.699089, 35.696447, 35.696539, 35.701743, 35.701463, 35.70181, 35.708206, 35.708678, 35.702359, 35.702465, 35.700289, 35.700446, 35.705802, 35.705909, 35.702832, 35.703376, 35.706595, 35.702884, 35.702123, 35.70153, 35.699917, 35.698318,
|
61 |
+
35.696867, 35.693728, 35.691479, 35.692042, 35.697158, 35.697201, 35.699415, 35.696412, 35.658251, 35.632067, 35.624413, 35.614026, 35.610627, 35.608564, 35.60869, 35.600934, 35.596246, 35.594278, 35.594544, 35.592339, 35.591527, 35.583247, 35.58211, 35.580812, 35.57411, 35.575465, 35.573211, 35.566837, 35.567286, 35.559657, 35.559388, 35.552055, 35.551036, 35.550776, 35.525515, 35.502486, 35.503451, 35.520796, 35.521251, 35.509669, 35.505892, 35.503871, 35.503399, 35.501097, 35.494178, 35.486478,
|
62 |
+
35.481073, 35.463674, 35.457874, 35.456274, 35.456074, 35.454774, 35.455574, 35.454287, 35.454565, 35.455569, 35.455434, 35.457574, 35.458074, 35.459074, 35.451474, 35.439174, 35.417021, 35.413064, 35.411913, 35.412075, 35.413975, 35.416075, 35.415075, 35.414775, 35.416275, 35.415675, 35.416875, 35.417075, 35.419975, 35.420075, 35.418575, 35.417975, 35.416475, 35.413475, 35.409375, 35.408175, 35.409975, 35.409543, 35.409271, 35.409573, 35.411173, 35.412482, 35.413302, 35.412974, 35.414269, 35.414001,
|
63 |
+
35.414737, 35.415921, 35.417156, 35.419164, 35.420062, 35.422035, 35.424005, 35.422724, 35.424371, 35.424985, 35.427295, 35.429451, 35.432201, 35.431709, 35.428811, 35.428306, 35.428611, 35.429447, 35.428413, 35.429599, 35.429368, 35.430707, 35.430732, 35.431667, 35.431129, 35.4314, 35.431354, 35.434598, 35.434077, 35.435463, 35.436569, 35.438283, 35.440383, 35.441003, 35.442191, 35.440627, 35.44121, 35.44282, 35.442107, 35.443191, 35.443524, 35.441755, 35.441967, 35.442926, 35.442843, 35.444222,
|
64 |
+
35.44569, 35.447651, 35.449704, 35.450451, 35.449574, 35.450512, 35.448996, 35.451024, 35.452356, 35.451731, 35.451723, 35.452379, 35.454554, 35.454333, 35.45566, 35.456061, 35.455387, 35.455046, 35.456019, 35.454025, 35.453161, 35.450751, 35.448729, 35.448365, 35.449231, 35.447433, 35.447635, 35.446918, 35.445738, 35.444986, 35.443518, 35.442289, 35.439676, 35.439312, 35.437881, 35.435371, 35.435055, 35.436923, 35.430902, 35.433207, 35.438403, 35.440408, 35.4337, 35.429332, 35.43302, 35.4337, 35.439252,
|
65 |
+
35.442128, 35.444676, 35.448465, 35.451586, 35.451251, 35.459404, 35.458568, 35.458658, 35.469982, 35.470104, 35.483405, 35.483902, 35.488717, 35.490514, 35.492182, 35.493514, 35.495672, 35.496856, 35.499495, 35.499666, 35.501526, 35.500733, 35.505851, 35.506812, 35.50486, 35.520852, 35.520917, 35.525983, 35.52584, 35.530913, 35.531204, 35.538789, 35.542156, 35.542456, 35.548025, 35.548422, 35.548789, 35.54924, 35.548564, 35.549104, 35.552859, 35.567597, 35.567936, 35.568925, 35.567977, 35.5686,
|
66 |
+
35.572476, 35.57275, 35.584396, 35.584621, 35.58961, 35.594487, 35.597134, 35.610309, 35.610317, 35.617898, 35.617923, 35.619331, 35.619307, 35.621899, 35.629322, 35.629946, 35.632218, 35.633861, 35.635155, 35.634672, 35.63809, 35.640277, 35.640375, 35.642019, 35.646795, 35.656301, 35.656792, 35.65911, 35.659001, 35.658533, 35.659657, 35.659392, 35.658435, 35.658225, 35.656687, 35.654832, 35.655693, 35.655976, 35.65688, 35.659514, 35.62487, 35.619672, 35.620021, 35.619103, 35.61604, 35.616531, 35.615605,
|
67 |
+
35.615124, 35.628383, 35.626554, 35.626203, 35.62773, 35.628723, 35.630217, 35.631501, 35.636685, 35.637871, 35.640983, 35.643204, 35.644326, 35.647761, 35.649502, 35.651815, 35.652296, 35.651998, 35.652363, 35.651377, 35.65156, 35.653304, 35.648766, 35.646463, 35.645964, 35.645167, 35.643642, 35.642724, 35.639881, 35.636233, 35.63472, 35.634399, 35.633115, 35.632982, 35.633515, 35.632897, 35.632744, 35.631051, 35.629266, 35.627046, 35.62386, 35.619428, 35.619258, 35.619682, 35.615779, 35.620853,
|
68 |
+
35.621156, 35.620448, 35.618914, 35.616486, 35.614358, 35.61516, 35.614726, 35.613627, 35.612094, 35.609851, 35.609999, 35.608937, 35.609349, 35.608937, 35.610677, 35.612532, 35.613792, 35.61589, 35.617772, 35.618462, 35.621058, 35.621064, 35.622819, 35.624192, 35.627054, 35.627834, 35.629575, 35.629951, 35.631144, 35.633702, 35.634283, 35.634509, 35.635875, 35.63855, 35.63803, 35.639197, 35.639389, 35.641348, 35.642425, 35.645353, 35.645286, 35.646954, 35.646314, 35.646755, 35.649173, 35.650074,
|
69 |
+
35.650347, 35.652478, 35.654479, 35.655065, 35.654491, 35.655915, 35.656931, 35.658303, 35.661494, 35.661907, 35.663952)))
|
data/shiny/ev_stations_davidson_.csv
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"","unique_stations","station_name","latitude","longitude","street_address","zip","charger_type","num_outlets"
|
2 |
+
"1","METRO NASHVILLE","METRO NASHVILLE FULTON GARAGE 1",36.153492,-86.76732,"800 2nd Avenue South","37210","Metro",2
|
3 |
+
"2","Action Nissan","Action Nissan",36.110606,-86.743585,"307 Thompson Ln","37211","Car dealer",1
|
4 |
+
"3","Downtown Nashville","Downtown Nashville Nissan",36.191053,-86.793132,"25 Vantage Way","37228","Car dealer",1
|
5 |
+
"4","Vanderbilt University","Vanderbilt University - Surface Lot",36.148816,-86.799577,"124 21st Ave S","37212","Hospital",1
|
6 |
+
"5","BMW NASHVILLE","BMW NASHVILLE STATION 01",36.104589,-86.761033,"4013 Armory Oaks Dr","37204","Car dealer",1
|
7 |
+
"6","METRO NASHVILLE","METRO NASHVILLE MIDTOWN HILLS",36.137258,-86.788609,"1441 12th Ave S","37203","Metro",1
|
8 |
+
"7","METRO NASHVILLE","METRO NASHVILLE LENTZ 3",36.15557,-86.813431,"2500 Charlotte Ave","37203","Metro",3
|
9 |
+
"8","METRO NASHVILLE","METRO NASHVILLE FULTON GARAGE 5",36.153934,-86.767472,"1st Ave S","37210","Metro",1
|
10 |
+
"9","METRO NASHVILLE","METRO NASHVILLE DOUGLAS HS 2",36.176117,-86.762044,"621 Howerton St","37206","Metro",1
|
11 |
+
"10","GARAGE RAMP","GARAGE RAMP PINNACLE 1",36.160453,-86.774698,"150 3rd Ave S 150 3rd Ave South","37201","Other",2
|
12 |
+
"11","Publix #1211","Publix #1211",36.12718,-86.84697,"4324 Harding Pike","37205","Grocery store",1
|
13 |
+
"12","METRO NASHVILLE","METRO NASHVILLE MNFD STATION 19",36.156447,-86.815539,"524b 26th Ave N","37209","Metro",1
|
14 |
+
"13","METRO NASHVILLE","METRO NASHVILLE BELLEVUE LIB",36.06949,-86.936094,"720 Baugh Rd","37221","Metro",1
|
15 |
+
"14","METRO NASHVILLE","METRO NASHVILLE NFD 20",36.091731,-86.826441,"1630 Harding Pl","37215","Metro",1
|
16 |
+
"15","LAKESBELLEVUE LAKESBELLEVUE","LAKESBELLEVUE LAKESBELLEVUE",36.079471,-86.908649,"200 Erin Ln","37221","Apartment complex",1
|
17 |
+
"16","GERMANTOWN1 IMT","GERMANTOWN1 IMT GERMANTOWN2",36.17576,-86.784768,"1100 3rd Ave N","37208","Other",2
|
18 |
+
"17","BNA EXPRESS","BNA EXPRESS STATION 01",36.110741,-86.672007,"115 Knapp Blvd","37217","Airport",2
|
19 |
+
"18","Marriott Nashville","Marriott Nashville Airport",36.146941,-86.692287,"600 Marriott Drive","37214","Airport",1
|
20 |
+
"19","Loews Vanderbilt","Loews Vanderbilt Hotel",36.150544,-86.802403,"2100 West End Avenue","37203","Hospital",1
|
21 |
+
"20","Midtown Cafe","Midtown Cafe",36.151923,-86.79686,"102 19th Avenue S","37203","Other",1
|
22 |
+
"21","Lipscomb University","Lipscomb University",36.105597,-86.798058,"One University park Drive","37204","Other",1
|
23 |
+
"22","TERM GARAGE","TERM GARAGE 2 MNAA PARK GA 2",36.130497,-86.667155,"Nashville","37214","Airport",3
|
24 |
+
"23","Hilton Nashville","Hilton Nashville Downtown - Tesla Destination",36.159962,-86.776722,"121 4th Ave S","37201","Tesla",1
|
25 |
+
"24","Urban Cookhouse","Urban Cookhouse Nashville - Tesla Destination",36.150317,-86.796647,"1907 Broadway","37203","Tesla",1
|
26 |
+
"25","The Hermitage","The Hermitage Hotel - Tesla Destination",36.163737,-86.782516,"231 6th Ave N","37219","Tesla",1
|
27 |
+
"26","Gaylord Opryland","Gaylord Opryland Resort & Convention Center - Tesla Destination",36.211385,-86.695925,"2800 Opryland Dr","37214","Tesla",1
|
28 |
+
"27","Thompson Nashville","Thompson Nashville - Tesla Destination",36.152342,-86.78409,"401 11th Ave S","37203","Tesla",1
|
29 |
+
"28","Hotel Preston","Hotel Preston - Tesla Destination",36.141968,-86.70126,"733 Briley Pkwy","37217","Tesla",1
|
30 |
+
"29","Fairfield Inn","Fairfield Inn & Suites Nashville Downtown/The Gulch - Tesla Destination",36.149966,-86.781738,"901 Division St","37203","Tesla",1
|
31 |
+
"30","METRO NASHVILLE","METRO NASHVILLE 2",36.142179,-86.739249,"610 Murfreesboro Pike","37210","Metro",5
|
32 |
+
"31","METRO NASHVILLE","METRO NASHVILLE WEST PRECINCT",36.151278,-86.855062,"5500 Charlotte Pike","37209","Metro",1
|
33 |
+
"32","METRO NASHVILLE","METRO NASHVILLE SE LIBRARY 2",36.052522,-86.656983,"5264 Hickory Hollow Pl","37013","Metro",2
|
34 |
+
"33","METRO NASHVILLE","METRO NASHVILLE HCH GARAGE 2",36.167275,-86.777527,"101 James Robertson Pkwy","37201","Metro",2
|
35 |
+
"34","METRO NASHVILLE","METRO NASHVILLE FIRE STATION 33",36.067571,-86.630697,"2501 Forest View Dr","37013","Metro",1
|
36 |
+
"35","Fairfield Inn","Fairfield Inn & Suites by Marriott Nashville - Tesla Destination",36.188914,-86.797442,"100 French Landing Dr","37228","Tesla",1
|
37 |
+
"36","TERM GARAGE","TERM GARAGE 2 MNAA FAST DC 4",36.131522,-86.669243,"1 Terminal Dr","37214","Airport",4
|
38 |
+
"37","METRO NASHVILLE","METRO NASHVILLE BELLEVUE ICE 4",36.081158,-86.951253,"7634 US-70S","37221","Metro",1
|
39 |
+
"38","METRO NASHVILLE","METRO NASHVILLE BELLEVUE ICE 3",36.080881,-86.950813,"7640 US-70S","37221","Metro",1
|
40 |
+
"39","Dalton Agency","Dalton Agency",36.176454992603,-86.754779240475,"926 Main Street
|
41 |
+
Suite A","37206","Other",1
|
42 |
+
"40","Eleven North","Eleven North",36.1597061,-86.7885981,"210 11th Avenue N","37203","Apartment complex",1
|
43 |
+
"41","TriStar Southern","TriStar Southern Hills Medical Center",36.0767,-86.7212,"391 Wallace Road","37211","Hospital",1
|
44 |
+
"42","Willowbrook Commons","Willowbrook Commons - Tesla Supercharger",36.110515,-86.723904,"61 East Thompson Lane","37211","Tesla",1
|
45 |
+
"43","Publix #1680","Publix #1680",36.16331,-86.789734,"1010 Dr Martin L King Jr Blvd","37203","Grocery store",1
|
46 |
+
"44","TVA DEMO","TVA DEMO 1 DEMO",36.150316,-86.685079,"26 Century Blvd","37214","Paid Parking",1
|
47 |
+
"45","HAMPTON STATION","HAMPTON STATION 1",36.148162,-86.665805,"2825 Elm Hill Pike","37214","Other",1
|
48 |
+
"46","TCMC B","TCMC B GARAGE CENTENNIAL B3",36.152315,-86.807851,"311 23rd Ave N","37203","Hospital",8
|
49 |
+
"47","NASHVILLE VAMC","NASHVILLE VAMC NASH 1",36.140718,-86.803386,"1310 24th Ave S","37212","Hospital",4
|
50 |
+
"48","WFM -","WFM - SOUTH WHOLEFOODS NAS1",36.156702,-86.788385,"1210 Broadway","37203","Grocery store",2
|
51 |
+
"49","STOCKYARDS STOCKYARDS","STOCKYARDS STOCKYARDS 1",36.171467,-86.7815,"801 2nd Ave N","37201","Other",1
|
52 |
+
"50","Rivertop Apartments","Rivertop Apartments",36.130606,-86.913108,"5800 River Rd","37209","Apartment complex",1
|
53 |
+
"51","METRO NASHVILLE","METRO NASHVILLE NFD STATION 37",36.072424,-86.933537,"656 Colice Jeanne Rd","37221","Metro",1
|
54 |
+
"52",NA,"NOGAS",36.115736,-86.752546,"2612 Winford Ave","37211","Other",1
|
55 |
+
"53","IMT 8","IMT 8 SOUTH STATION 1",36.126212,-86.77796,"2405 8th Ave S","37204","Other",2
|
56 |
+
"54","TERMINAL 1","TERMINAL 1 P2 STATION 3",36.133227,-86.666937,"Terminal Garage 1 140 BNA Park Dr","37214","Airport",9
|
57 |
+
"55","Windsor Tower","Windsor Tower Condos",36.127888,-86.841022,"4215 Harding PIke","37205","Apartment complex",1
|
58 |
+
"56","Hutton Hotel","Hutton Hotel - Tesla Destination",36.152907,-86.797009,"1808 W End Ave","37203","Tesla",1
|
59 |
+
"57","ENDEAVOR REG","ENDEAVOR REG DEMONBREUN 1",36.154393,-86.78763,"1216 Demonbreun St","37203","Paid Parking",2
|
60 |
+
"58","ENDEAVOR REG","ENDEAVOR REG MCGAVOCK 1",36.154798,-86.787408,"1213 McGavock St","37203","Paid Parking",1
|
61 |
+
"59","PP 5TH&BROAD","PP 5TH&BROAD 5+B_RETAIL_B1_1",36.16067,-86.77889,"550 Broadway","37203","Paid Parking",8
|
62 |
+
"60","PP 5TH&BROAD","PP 5TH&BROAD 5+B_OFFICE_05_1",36.16119,-86.77919,"134 5th Ave N","37219","Paid Parking",7
|
63 |
+
"61","PP 5TH&BROAD","PP 5TH&BROAD 5+B_RESI02_9",36.160225,-86.78049,"612 Broadway","37203","Paid Parking",6
|
64 |
+
"62","PP 5TH&BROAD","PP 5TH&BROAD 5+B_RESI02_8",36.160645,-86.78044,"118 7th Ave N","37203","Paid Parking",2
|
65 |
+
"63","PP 5TH&BROAD","PP 5TH&BROAD 5+B_RESI02_3",36.160923,-86.78056,"620 Commerce St","37203","Paid Parking",1
|
66 |
+
"64","ENDEAVOR REG","ENDEAVOR REG BROADWAY 1",36.154701,-86.789639,"1501 Broadway","37203","Paid Parking",1
|
67 |
+
"65","METRO NASHVILLE","METRO NASHVILLE FULTON GARAGE 3",36.153683,-86.767461,"800 2nd Ave S","37210","Metro",3
|
68 |
+
"66","METRO NASHVILLE","METRO NASHVILLE BELLEVUE ICE 1",36.080823,-86.95075,"7638 US-70S","37221","Metro",2
|
69 |
+
"67","CHPT EVSE","CHPT EVSE NASHVILLE 2",36.184011,-86.634005,"2330 Jackson Downs Blvd","37214","Other",4
|
70 |
+
"68","Taylor Place","Taylor Place",36.178294,-86.790855,"1411 Rep. John Lewis Way N","37208","Apartment complex",1
|
71 |
+
"69","Music City","Music City Center",36.15644,-86.77903,"201 Fifth Avenue South","37203","Paid Parking",1
|
72 |
+
"70","Publix #1665","Publix #1665",36.128822,-86.77856,"2223 8th Ave S","37204","Grocery store",1
|
73 |
+
"71","BNA EXPRESS","BNA EXPRESS P6 STATION 1",36.132113,-86.668547,"1 Terminal Dr","37214","Airport",4
|
74 |
+
"72","AVID AIRPORT","AVID AIRPORT AVID",36.144556,-86.675114,"44 Rachel Dr","37214","Airport",1
|
75 |
+
"73","METRO NASHVILLE","METRO NASHVILLE NFD STATION 32",36.201006,-86.608176,"4248 Andrew Jackson Pkwy","37076","Metro",1
|
76 |
+
"74","Vanderbilt Medical","Vanderbilt Medical Center - Dixie Place",36.14086,-86.801361,"2120 Dixie Place","37212","Hospital",1
|
77 |
+
"75","Target -","Target - Tesla Supercharger",36.134009,-86.891923,"6814 Charlotte Pike","37209","Grocery store",1
|
78 |
+
"76","BLCT VILLAGE","BLCT VILLAGE BELCOURT VILLAG",36.136593,-86.801711,"2111 Belcourt Ave","37212","Other",2
|
79 |
+
"77","Willowbrook Commons","Willowbrook Commons",36.109803,-86.727162,"61 East Thompson Lane","37211","Other",1
|
80 |
+
"78","One Metrocenter","One Metrocenter Apartments",36.190622,-86.795607,"45 Vantage Way","37228","Metro",1
|
81 |
+
"79","The Shay","The Shay",36.1499978,-86.8209358,"9 City Place","37209","Apartment complex",1
|
82 |
+
"80","STOCKYARDS STOCKYARDS","STOCKYARDS STOCKYARDS 2",36.17146,-86.781334,"2nd Ave N & Stockyard St SB","37201","Other",1
|
83 |
+
"81","BNA12 BNA12","BNA12 BNA12 - 22",36.160506,-86.787571,"1010 Church St","37203","Airport",20
|
84 |
+
"82","oneC1TY Nashville","oneC1TY Nashville",36.150654,-86.8199837,"8 City Blvd","37209","Apartment complex",1
|
85 |
+
"83","Aertson Midtown","Aertson Midtown",36.148745906289,-86.798330227576,"905 20th Ave S","37203","Other",1
|
86 |
+
"84","The Duke","The Duke of Nashville",36.1925886,-86.7893509,"281 Cumberland Bend #266","37228","Other",1
|
87 |
+
"85","TARGET CORP","TARGET CORP NASHVILLE WEST1",36.134026,-86.89188,"6814 Charlotte Pike","37209","Grocery store",2
|
88 |
+
"86","METRO NASHVILLE","METRO NASHVILLE DEC 911",36.129968,-86.791072,"2060 15th Ave","37212","Metro",1
|
89 |
+
"87","Green Hills","Green Hills YMCA",36.103882,-86.820568,"4041 Hillsboro Cir","37215","Other",1
|
90 |
+
"88","Opry Mills","Opry Mills",36.20312,-86.690325,"433 Opry Mills Dr","37214","Other",1
|
91 |
+
"89","Nissan Stadium","Nissan Stadium",36.164227,-86.769632,"1 Titans Way","37213","Car dealer",1
|
92 |
+
"90","Mapco Mart","Mapco Mart",36.134888,-86.779399,"1909 8th Ave S","37203","Grocery store",1
|
93 |
+
"91","METRO NASHVILLE","METRO NASHVILLE STATION 3",36.142438,-86.741004,"600 Murfreesboro Pike","37210","Metro",1
|
94 |
+
"92","Tennessee State","Tennessee State Parks - Radnor Lake State Park",36.06299,-86.80971,"1160 Otter Creek Rd","37220","Other",1
|
95 |
+
"93","DK TIRES","DK TIRES STATION 1",36.283643,-86.696213,"530 Myatt Dr","37115","Other",1
|
96 |
+
"94","PREMIER PARKING","PREMIER PARKING STATION5",36.144836,-86.767916,"1137 4th Ave S","37210","Paid Parking",2
|
97 |
+
"95","PREMIER PARKING","PREMIER PARKING STATION1",36.145579,-86.768181,"1125 4th Ave S","37210","Paid Parking",4
|
98 |
+
"96","MATHEWS 3RD","MATHEWS 3RD & LEA",36.154585,-86.771998,"615 3rd Ave S","37210","Other",1
|
99 |
+
"97","Apex Glassworks","Apex Glassworks",36.1967754,-86.8090888,"541 Great Circle Road","37228","Apartment complex",1
|
data/shiny/ev_stations_davidson_.rda
ADDED
Binary file (4.68 kB). View file
|
|
data/zcta-to-fips-county.rds
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e86789ad8bdea9e06a45ebbf28f80d250fcfe3591cbc987d1531910f5084c8eb
|
3 |
+
size 1500986
|
google-analytics.html
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2 |
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z9FW4EYGNC"></script>
|
3 |
+
<script>
|
4 |
+
window.dataLayer = window.dataLayer || [];
|
5 |
+
function gtag(){dataLayer.push(arguments);}
|
6 |
+
gtag('js', new Date());
|
7 |
+
gtag('config', 'G-Z9FW4EYGNC');
|
8 |
+
</script>
|
requirements.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
pandas
|
3 |
+
plotly
|
4 |
+
folium
|
5 |
+
geopandas
|
6 |
+
pyarrow
|
rsconnect/shinyapps.io/greenautorwanda/kora.dcf
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: kora
|
2 |
+
title: app
|
3 |
+
username: greenautorwanda
|
4 |
+
account: greenautorwanda
|
5 |
+
server: shinyapps.io
|
6 |
+
hostUrl: https://api.shinyapps.io/v1
|
7 |
+
appId: 12604401
|
8 |
+
bundleId: 9077350
|
9 |
+
url: https://greenautorwanda.shinyapps.io/kora/
|
10 |
+
version: 1
|
11 |
+
asMultiple: FALSE
|
12 |
+
asStatic: FALSE
|