Created
July 15, 2024 17:16
-
-
Save mschmidty/f85361f91d1154988877f427a683b10d to your computer and use it in GitHub Desktop.
This file contains 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(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) | |
st_write(ccgn_data, "whatever/output/path/you/want.gpkg") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment