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
<!DOCTYPE connections> | |
<qgsARCGISFEATURESERVERConnections version="1.0"> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://gis.aacounty.org/arcgis/rest/services" name="Anne Arundel County GIS" password=""/> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://services1.arcgis.com/mVFRs7NF4iFitgbY/arcgis/rest/services" name="BNIA-JFI Vital Signs Open Data Portal" password=""/> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://services1.arcgis.com/UWYHeuuJISiGmgXx/ArcGIS/rest/services" name="Baltimore City ArcGIS Online Assorted" password=""/> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://dotgis.baltimorecity.gov/arcgis/rest/services" name="Baltimore City DOT GIS" password=""/> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://dpwgis.baltimorecity.gov/ags102/rest/services" name="Baltimore City DPW GIS" password=""/> | |
<arcgisfeatureserver authcfg="" referer="" username="" url="https://services1.arcgi |
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(dplyr) | |
library(ggplot2) | |
# pak::pkg_install("elipousson/mapmaryland") | |
plot_theme <- list( | |
hrbrthemes::theme_ipsum_pub(base_size = 15), | |
cols4all::scale_color_discrete_c4a_cat(palette = "tol.medium"), | |
cols4all::scale_fill_discrete_c4a_cat(palette = "tol.medium") | |
) |
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
--- | |
title: "mapbaltimore, getdata, and maplayer" | |
output: html_document | |
date: '2022-07-15' | |
--- | |
```{r, include = FALSE} | |
knitr::opts_chunk$set( | |
collapse = TRUE, | |
comment = "#>" |
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
# pak::pkg_install("elipousson/overedge") | |
library(overedge) | |
get_osm_static_mapbox( | |
id = "way/49664223", | |
dist = 0.5, | |
unit = "mi", | |
overlay_style = list( | |
stroke = "darkgreen", |
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
#' @name get_nounproject_icon | |
#' @noRd | |
get_nounproject_icon <- function( | |
token = NULL) { | |
token <- get_access_token(type = "NOUNPROJECT_API_KEY") | |
secret <- get_access_token(type = "NOUNPROJECT_SECRET_API_KEY") | |
# https://api.thenounproject.com/explorer |
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
try { | |
var docRef = getDocRef(); | |
var objStyleRef = getObjStyle (docRef, styleName, wrapAmt); | |
var sList = docRef.stories; | |
for (var j = 0; j < sList.length;j++) { | |
var storyRef = docRef.stories[j]; | |
var sItems = storyRef.splineItems; | |
if (sItems.length > 0) { | |
for (var i = sItems.length - 1; i >= 0; i--) { | |
cnt ++; |
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
library(dplyr) | |
library(ggplot2) | |
library(ragg) | |
library(systemfonts) | |
# NOTE: The url is not included because it contained copyright protected text from this game https://sniperserpent.itch.io/oupost-alpha | |
# url <- "https://docs.google.com/spreadsheets" | |
# Thing 1 ---- | |
cards_init <- |
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(dplyr) | |
library(ggplot2) | |
school <- | |
get_location( | |
type = bcpss::bcps_programs_SY2021, | |
id_col = "program_number", | |
id = 7 | |
) |