我正在尝试上传115 MB的SHP文件。将SHP文件加载到Leaflet中时,加载时间变得非常长。它最终会加载,但是这会使Rstudio运行超级慢。我想知道是否有人知道我的问题可能出在哪里,或者有人对如何使其运行更快有提示。我正在使用美国人口普查中的shapefile用于美国所有县。
shapefile_name <- paste(getwd(), "/tl_2011_us_county/tl_2011_us_county.shp", sep="")
US <- readOGR(shapefile_name, layer = "tl_2011_us_county", verbose = FALSE)
census <- read.csv("US_data.csv")
leaflet(US) %>%
addPolygons(
stroke = FALSE, fillOpacity = 0.8, smoothFactor = 0.5)