Skip to content

Commit

Permalink
consolidated shapefile, more sf
Browse files Browse the repository at this point in the history
  • Loading branch information
EJosephson committed Jul 2, 2024
1 parent 22049c3 commit 7f31657
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
Binary file added Production/data/BayPolys/BayPolys.sbn
Binary file not shown.
Binary file added Production/data/BayPolys/BayPolys.sbx
Binary file not shown.
Binary file added Production/data/BayPolys/BayPolys.shp
Binary file not shown.
1 change: 1 addition & 0 deletions Production/data/BayPolys/BayPolys.shp.xml

Large diffs are not rendered by default.

Binary file added Production/data/BayPolys/BayPolys.shx
Binary file not shown.
6 changes: 5 additions & 1 deletion Production/scripts/rectangleSelectPv2.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ library(leaflet)
library(DT)
library(crosstalk)
library(shinydashboard)
library(tidyverse)
library (sf)


dashboardSidebar(disable = TRUE)
Expand All @@ -15,7 +17,9 @@ baycts<-merge(baycts, baycenters, by = "BAYNUM", all.x=TRUE)

baycts<- select(baycts, LONG, LAT, BAYCODE, Bayunit=BAYDESC, Year, Nonpups=Estimate.Nonpups, Pups=Estimate.Pups)
baycts$Bayunit<-as.factor(baycts$Bayunit)
bays<-st_read("./data/BayPolys.shp")
#bays<-st_read("./data/BayPolys.shp")
bays<-sf::read_sf("./data/BayPolys/BayPolys.shp")


# Wrap data frame in SharedData
sd <- SharedData$new(baycts)
Expand Down

0 comments on commit 7f31657

Please sign in to comment.