FedData github page
Makesure to download the development version. In the CRAN version downloading get_nlcd()
is broken.
devtools::install_github("ropensci/FedData")
library(FedData)
library(tigris) ## to get county level data
const { dest, src, series, watch, parallel } = require('gulp'); | |
const sass = require('gulp-sass')(require('sass')); | |
const rename = require('gulp-rename'); | |
const autoprefixer = require('autoprefixer') | |
const sourcemaps = require('gulp-sourcemaps') | |
const postcss = require('gulp-postcss') | |
const cssnano = require('cssnano'); | |
const babel = require('gulp-babel'); |
FedData github page
Makesure to download the development version. In the CRAN version downloading get_nlcd()
is broken.
devtools::install_github("ropensci/FedData")
library(FedData)
library(tigris) ## to get county level data
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "ctrl+alt+i", | |
"command": "editor.action.insertSnippet", | |
"when": "editorTextFocus", | |
"args": { | |
"snippet": "```{r}\n$0\n```", | |
} |
In order to connect to this connection you must be on a BLM computer.
To create an ODBC connection, on a Windows computer connected to a BLM network or VPN network, in the search bar search "ODBC Data Sources (32-bit)" in the windows search bar.
When the window opens:
"Header for .qmd" : { | |
"scope": "quarto, qmd", | |
"prefix": "qmdtomd", | |
"body" : [ | |
"---", | |
"title: ${0}", | |
"date:", | |
"tags: [ ]", | |
"format:", | |
"\tcommonmark:", |
library(sf) | |
library(arcgislayers) | |
con <- arc_open("https://gis.blm.gov/nlsdb/rest/services/Fluid_Minerals/Oil_Gas_Leases_Production_Status/MapServer/0") | |
ccng_bd <- st_read("T:\\FS\\NFS\\PSO\\MPSG\\2024_CimarronComancheNG\\1_PreAssessment\\Data\\Shapefiles\\CimarronComancheNG_AdminBdy.shp") |> | |
st_transform(con$sourceSpatialReference$wkid) | |
ccng_data <- arc_select(con, filter_geom = st_bbox(ccng_bd), page_size = 200) | |