This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| New Haven | |
| Hartford |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Andover | |
| Avon | |
| Berlin | |
| Bloomfield | |
| Bolton | |
| Canton | |
| Columbia | |
| Coventry | |
| East Granby | |
| East Hartford |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bethany | |
| Branford | |
| East Haven | |
| Guilford | |
| Hamden | |
| Madison | |
| Meriden | |
| Milford | |
| New Haven | |
| North Branford |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bridgeport | |
| Easton | |
| Fairfield | |
| Monroe | |
| Stratford | |
| Trumbull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Andover | |
| Avon | |
| Berlin | |
| Bloomfield | |
| Bolton | |
| Canton | |
| Columbia | |
| Coventry | |
| East Granby | |
| East Hartford |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bethany | |
| Branford | |
| East Haven | |
| Guilford | |
| Hamden | |
| Madison | |
| Meriden | |
| Milford | |
| New Haven | |
| North Branford |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| prep_args <- function() { | |
| prsr <- argparse::ArgumentParser( | |
| prog = "Find an agent", | |
| description = "Get recent user agent strings for mimicking browser requests." | |
| ) | |
| prsr$add_argument("-o", "--os", | |
| type = "character", | |
| help = "Operating system", | |
| default = "Ubuntu" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse, quietly = TRUE) | |
| library(arcgislayers) | |
| library(sf) | |
| library(future) | |
| plan(multisession) | |
| base_url <- "https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb" | |
| services <- arcgislayers::arc_open(base_url)[["services"]] |> | |
| mutate(id = str_remove(name, "TIGERweb/")) |> |
NewerOlder