diff --git a/globalprep/lsp/v2023/1_prep_wdpa_rast.html b/globalprep/lsp/v2023/1_prep_wdpa_rast.html new file mode 100644 index 00000000..f9ec98d7 --- /dev/null +++ b/globalprep/lsp/v2023/1_prep_wdpa_rast.html @@ -0,0 +1,2183 @@ + + + + + + + + + + + + + + +OHI 2023: LSP, Rasterize WDPA polygons + + + + + + + + + + + + + + +

+ohi logo
OHI Science | Citation policy +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+
+
+
+
+ +
+ + + + + + + +
+

Summary

+
    +
  • Setup WDPA shapefile for lasting special places by filtering out +non-“Designated” protected areas, and filtering out “non-MPA +programmatic management plans” (US protected areas that distort +scores).
  • +
  • Rasterize the result using terra::resterize() +(fasterize() doesn’t work with SpatRaster +objects) and save to disk using terra::writeRaster() (this +was formerly done with a function defined in the document: +writeRasterBlocks() - as of now, it has not been updated to +use terra functions and objects.)
  • +
+

View lsp_data_prep.Rmd for full description of Lasting Special Places +data preparation.

+
+
+

Methods

+
+

Downloading Data

+

Accessing and downloading the data was difficult in 2023 due to a +downloading bug, luckly there are multiple ways to download the data +from the webpage. The below directions sound easy; but it is easy to be +navigated to a page where the download functionality is broken.

+

Directions to download data:

+

1: Link to specific website: https://www.protectedplanet.net/en/thematic-areas/wdpa?tab=WDPA

+

2: Select the download button in the top right hand corner.

+

3: Download and unzip the file

+

4: There will be additional zip files within the zip file you +download. Once unzipped, these are the three files you will use +throughout the LSP dataprep.

+
+
+

Filter and re-project WDPA polygons

+

The WDPA-MPA dataset comes as a shapefile or geodatabase in WGS84 +coordinate reference system.

+
    +
  • For OHI we have chosen to count only protected areas with defined +legal protection, so we apply a filter on the STATUS attribute that +selects only STATUS == “Designated”. +
      +
    • According to the WDPA Manual: STATUS as “Designated” means: “Is +recognized or dedicated through legal means. Implies specific binding +commitment to conservation in the long term. Applicable to government +and non-government sources.”
    • +
    • Other values for STATUS include “Proposed”, “Adopted”, “Inscribed”, +or “Not Reported” and “Established”. +
        +
      • “Adopted” and “Inscribed” are World Heritage or Barcelona Convention +sites; while these may seem important, they are generally protected by +other means (as overlapping “Designated” polygons) in addition to these +values.
      • +
    • +
  • +
  • In 2015, the USA started including polygons that represent marine +management plans, in addition to more strictly defined protected areas. +This info is contained in the “MANG_PLAN” field. +
      +
    • These programmatic management plans variously protect species, +habitats, and (??) and can be MPA or non-MPA.
    • +
    • For OHI we have chosen to count only MPA programmatic management +plans, omitting Non-MPA programmatic management plans.
    • +
  • +
  • For ease of tallying areas, we convert the polygons to a Mollweide +equal-area projection before rasterizing.
  • +
+

Once the polygons have been prepped, we rasterize the results to 500 +m resolution.

+

This process is all done in the script: +1_prep_wdpa_rast.Rmd. After that is complete, move on to +computing zonal statistics.

+
+
+
+

Updates from previous assessment

+

2021 Changed data source to 2021 The source data has now been split +into 3 different files, so we will need to merge all three shapefiles +together, before we can work with the data.

+

We updated the script to save 3 separate files for the reordering and +transforming, for ease of use and reproducibility.

+
+
+
+

Setup

+
+
+

Methods

+
+

Filter WDPA Shapefile

+

Read in the polygons from the WDPA dataset; filter as needed.

+
# create path objects for the 3 different zip files downloaded from source
+shp_raw_0 <- file.path(dir_data, 'WDPA_Jun2023_Public_shp_0', 'WDPA_Jun2023_Public_shp-polygons')
+shp_raw_1 <- file.path(dir_data, 'WDPA_Jun2023_Public_shp_1', 'WDPA_Jun2023_Public_shp-polygons')
+shp_raw_2 <- file.path(dir_data, 'WDPA_Jun2023_Public_shp_2', 'WDPA_Jun2023_Public_shp-polygons')
+
+# read shape files in as sf objects
+wdpa_poly_0 <- st_read(dsn = dirname(shp_raw_0), 
+                       layer = basename(shp_raw_0),
+                       stringsAsFactors = FALSE)
+
+  
+wdpa_poly_1 <- st_read(dsn = dirname(shp_raw_1),
+                       layer = basename(shp_raw_1),
+                       stringsAsFactors = FALSE)
+
+  
+wdpa_poly_2 <- st_read(dsn = dirname(shp_raw_2), 
+                       layer = basename(shp_raw_2),
+                       stringsAsFactors = FALSE)
+
+# put all shape files into a list
+wdpa_list <- list(wdpa_poly_0, wdpa_poly_1, wdpa_poly_2)
+

Test and inspect the raw data to ensure quality

+
# inspect status column to find unique values:
+# "Designated"   "Inscribed"    "Proposed"     "Not Reported" "Established"  "Adopted"   
+wdpa_poly_0$STATUS %>% unique()
+
+# check for non-mpa program in management plan column, we want them to be empty
+x_0 <- wdpa_poly_0 %>%
+  filter(str_detect(tolower(MANG_PLAN), 'non-mpa program')) 
+
+x_1 <- wdpa_poly_1 %>%
+  filter(str_detect(tolower(MANG_PLAN), 'non-mpa program'))
+
+x_2 <- wdpa_poly_2 %>%
+  filter(str_detect(tolower(MANG_PLAN), 'non-mpa program'))
+
+# List of data frames
+df_list <- list(x_0 = x_0, x_1 = x_1, x_2 = x_2)
+
+# Iterate over the list of data frames
+for(i in names(df_list)) {
+  # Check if the data frame is empty
+  if(nrow(df_list[[i]]) == 0) {
+    print(paste(i, "is empty (good)"))
+  } else {
+    print(paste(i, "is not empty (bad)"))
+  }
+}
+
+# remove uneeded objects
+rm(df_list, x_0, x_1, x_2)
+
# create a function to run over list of sf objects
+tidy_wdpa_data <- function(wdpa_poly_object) {
+
+  DF <- wdpa_poly_object %>%
+    setNames(tolower(names(.))) %>% #improve?
+    dplyr::select(wdpaid, name, orig_name, 
+           desig, desig_eng, desig_type,
+           iucn_cat, 
+           marine, no_take, no_tk_area, 
+           status, status_yr, 
+           mang_auth, mang_plan, verif,
+           sub_loc, parent_iso, iso3) %>%
+    dplyr::mutate(status_yr = as.integer(status_yr))
+  
+  DF <- DF[DF$status == 'Designated', ]
+  DF <- DF[!str_detect(tolower(DF$mang_plan), 'non-mpa program'), ]
+  
+return(DF)
+}  
+
+# run function over the list
+wdpa_poly_list <- lapply(wdpa_list, tidy_wdpa_data)
+
+# check to see if it worked, we should have 19 columns and fewer observations
+test <- wdpa_poly_list[[1]]
+
+# remove test for memory
+rm(test)
+
# now we need to unlist them, and write them to the appropriate folder
+wdpa_poly_fix_0 <- wdpa_poly_list[[1]]  
+wdpa_poly_fix_1 <- wdpa_poly_list[[2]]  
+wdpa_poly_fix_2 <- wdpa_poly_list[[3]]
+
+# created filepaths for the files, make sure their names alligne with your year's dates
+shp_reorder_0 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_0') # replace month and year with the appropriate month and year
+shp_reorder_1 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_1') # replace month and year with the appropriate month and year
+shp_reorder_2 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_2') # replace month and year with the appropriate month and year
+  
+# write the shapefile to the raw_data Mazu folder, warning suppressed, takes about 20 minutes.
+suppressWarnings(st_write(wdpa_poly_fix_0,
+                          dsn = dirname(shp_reorder_0), 
+                          layer = basename(shp_reorder_0),
+                          driver = 'ESRI Shapefile'))
+  
+suppressWarnings(st_write(wdpa_poly_fix_1,
+                          dsn = dirname(shp_reorder_1), 
+                          layer = basename(shp_reorder_1),
+                          driver = 'ESRI Shapefile'))
+  
+suppressWarnings(st_write(wdpa_poly_fix_2,
+                          dsn = dirname(shp_reorder_2), 
+                          layer = basename(shp_reorder_2),
+                          driver = 'ESRI Shapefile'))
+  
+#clean up memory
+rm('wdpa_poly_list', "wdpa_list", "wdpa_poly_0", "wdpa_poly_1", "wdpa_poly_2", "wdpa_poly_fix_0", "wdpa_poly_fix_1", "wdpa_poly_fix_2") 
+gc()
+
+
+

Transform to Mollweide Projection

+

Transform ordered polygons to Mollweide and save as new polygons.

+
# file paths for shape files we just wrote to Mazu
+shp_reorder_0 <- file.path(dir_data, 'shps', 'WDPA_Jun2022_shp_ordered_0')
+shp_reorder_1 <- file.path(dir_data, 'shps', 'WDPA_Jun2022_shp_ordered_1')
+shp_reorder_2 <- file.path(dir_data, 'shps', 'WDPA_Jun2022_shp_ordered_2')
+
+# read in those shape files as sf objects to ensure they were written correctly and to use below
+wdpa_poly_0 <- st_read(dsn = dirname(shp_reorder_0), 
+                          layer = basename(shp_reorder_0),
+                          stringsAsFactors = FALSE)
+wdpa_poly_1 <- st_read(dsn = dirname(shp_reorder_1), 
+                          layer = basename(shp_reorder_1),
+                          stringsAsFactors = FALSE)
+wdpa_poly_2 <- st_read(dsn = dirname(shp_reorder_2), 
+                          layer = basename(shp_reorder_2),
+                          stringsAsFactors = FALSE)
+
+# put the sf objects in a list
+wdpa_list <- list(wdpa_poly_0, wdpa_poly_1, wdpa_poly_2)    
+
+# create function to run over list and change the CRS to Mollweide
+change_crs <- function(wdpa_poly_object) {
+
+  message('Spatial transforming WDPA polygons to Mollweide')
+
+  DF <- st_transform(wdpa_poly_object, 
+        crs = '+proj=moll +lon_0=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs')
+  
+return(DF)
+}  
+
+# run function over list of sf objects
+wdpa_poly_list <- lapply(wdpa_list, change_crs)
+
+# unlist the items
+wdpa_poly_fix_0 <- wdpa_poly_list[[1]]  
+wdpa_poly_fix_1 <- wdpa_poly_list[[2]]  
+wdpa_poly_fix_2 <- wdpa_poly_list[[3]]  
+
+# validate that the CRS has changed successfully
+st_crs(wdpa_poly_fix_0)
+
+# set file path for writing, be sure to change these to the correct titles for saving
+shp_xformed_0 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_0') # replace month and year with the appropriate month and year
+shp_xformed_1 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_1') # replace month and year with the appropriate month and year
+shp_xformed_2 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_2') # replace month and year with the appropriate month and year
+
+# write the transformed files to Mazu, this will likely take ~7 mins per file, look at the file size on Mazu to check if it is done writing
+st_write(wdpa_poly_fix_0, dsn = dirname(shp_xformed_0), layer = basename(shp_xformed_0),
+           driver = 'ESRI Shapefile', update = TRUE)
+st_write(wdpa_poly_fix_1, dsn = dirname(shp_xformed_1), layer = basename(shp_xformed_1),
+           driver = 'ESRI Shapefile', update = TRUE)
+st_write(wdpa_poly_fix_2, dsn = dirname(shp_xformed_2), layer = basename(shp_xformed_2),
+           driver = 'ESRI Shapefile', update = TRUE)
+
+
+

Shapefile to Raster: terra::rasterize()

+

2023: Here we switch to using the terra package to turn the vector sf +objects into rasters. Terra is the most modern package for raster +managment and rasterization and there was work in previous years to +transition from older packages to the Terra package. To find details of +this transition, look at previous notebooks, this notebook has been +cleaning and organized to minimize the visibility of that transition and +to streamline the work of future OHI fellows.

+

2022: terra::rasterize() is used with two +SpatRaster objects as input, followed by +terra::writeRaster().

+

2021: fasterize() from the fasterize +package takes advantage of Simple Features objects from the +sf package, rather than objects from the sp +package. It is considerably faster; it returned a completed raster in +ten minutes. However, saving the very large (18GB) resulting raster +proved problematic. The writeRasterBlocks() function +defined above helped get around that problem though still took over an +hour to write the raster to disk.

+
# destination filepath for all the new raster file
+rast_wdpa_file <- file.path(dir_goal_anx, 'rast', 'wdpa_2023_moll_500m.tif') 
+
+# function to create raster file or skip process if raster file is present
+if(!file.exists(rast_wdpa_file)) {
+  
+  # file paths for vector data created earlier
+  # replace month and year with the appropriate month and year
+  shp_xformed_file_0 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_0.shp') 
+  shp_xformed_file_1 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_1.shp') 
+  shp_xformed_file_2 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_xformed_2.shp') 
+
+  # create time stamp
+  ptm <- proc.time()
+
+  # read in data as SpatVectors with terra
+  wdpa_poly_0 <- vect(shp_xformed_file_0)
+  wdpa_poly_1 <- vect(shp_xformed_file_1)
+  wdpa_poly_2 <- vect(shp_xformed_file_2)
+  
+  # bind them all together into one object
+  wdpa_poly_all <- rbind(wdpa_poly_0, wdpa_poly_1, wdpa_poly_2)
+  
+  # report time: ~25s to read in each file
+  cat('elapsed: ', (proc.time() - ptm)[3])
+  
+  # clear memory
+  rm("wdpa_poly_0", "wdpa_poly_1", "wdpa_poly_2")
+  gc()
+
+  # read in base raster file used in OHI
+  rast_base <- terra::rast(file.path(dir_M, 'git-annex/globalprep/spatial/d2014',
+                                'data/rgn_mol_raster_500m',
+                                'rgn_inland1km_mol_500mcell.tif'))
+  
+  # time stamp
+  ptm <- proc.time()
+  
+  # convert vector object into raster object
+  # for overlapping polygons, use the oldest (minimum) status year for that area: fun = "min"
+  rast_wdpa <- terra::rasterize(wdpa_poly_all, 
+                                rast_base, 
+                                field = 'status_yr', 
+                                fun = 'min')
+  
+  # time stamp report
+  cat('rasterize elapsed: ', (proc.time() - ptm)[3]) 
+  
+  # 2021 fasterize: 45.006 seconds!
+  # 2022 terra::rasterize: 876 seconds
+  # 2023 terra::rasterize: 454 seconds
+
+  # time stamp
+  ptm <- proc.time()
+  
+  # must create new folder and rast subfolder at destination for this to work
+  x <- writeRaster(rast_wdpa, rast_wdpa_file)
+  
+  # report time stamp: ~76 seconds
+  message('writeRaster elapsed: ', (proc.time() - ptm)[3])
+}
+
# you are encouraged to use this space to examing the raster created from the WDPA data 
+
+# read in this year and last year's data
+check_current <- terra::rast(rast_wdpa_file)
+check_past <- terra::rast(file.path("/home/shares/ohi/git-annex/globalprep/lsp/v2022/rast/wdpa_2022_moll_500m.tif"))
+
+# visualize both rasters
+plot(check_current, col = 'blue')
+plot(check_past, col = 'blue')
+
+
+

Data Checking

+

Compare shapefile 2021 v 2022.

+
library(sf)
+library(raster)
+
+# file paths for previous data as SF
+shp_reorder_21_0 <- file.path('/home/shares/ohi/git-annex/globalprep/_raw_data/wdpa_mpa/d2022/WDPA_Jun2022_Public_shp/shps/WDPA_Jun2022_shp_ordered_0')
+shp_reorder_21_1 <- file.path('/home/shares/ohi/git-annex/globalprep/_raw_data/wdpa_mpa/d2022/WDPA_Jun2022_Public_shp/shps/WDPA_Jun2022_shp_ordered_0')
+shp_reorder_21_2 <- file.path('/home/shares/ohi/git-annex/globalprep/_raw_data/wdpa_mpa/d2022/WDPA_Jun2022_Public_shp/shps/WDPA_Jun2022_shp_ordered_0')
+
+# read in previous data
+wdpa_poly_21_0 <- st_read(dsn = dirname(shp_reorder_21_0), 
+                          layer = basename(shp_reorder_21_0),
+                          stringsAsFactors = FALSE)
+wdpa_poly_21_1 <- st_read(dsn = dirname(shp_reorder_21_1), 
+                          layer = basename(shp_reorder_21_1),
+                          stringsAsFactors = FALSE)
+wdpa_poly_21_2 <- st_read(dsn = dirname(shp_reorder_21_2), 
+                          layer = basename(shp_reorder_21_2),
+                          stringsAsFactors = FALSE)
+
+# bind all into one
+wdpa_poly_all_previous <- rbind(wdpa_poly_21_0, wdpa_poly_21_1, wdpa_poly_21_2)
+
+
+# file paths for current data as SF
+shp_reorder_0 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_0')
+shp_reorder_1 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_1')
+shp_reorder_2 <- file.path(dir_data, 'shps', 'WDPA_Jun2023_shp_ordered_2')
+
+# read in current data
+wdpa_poly_0 <- st_read(dsn = dirname(shp_reorder_0), 
+                          layer = basename(shp_reorder_0),
+                          stringsAsFactors = FALSE)
+wdpa_poly_1 <- st_read(dsn = dirname(shp_reorder_1), 
+                          layer = basename(shp_reorder_1),
+                          stringsAsFactors = FALSE)
+wdpa_poly_2 <- st_read(dsn = dirname(shp_reorder_2), 
+                          layer = basename(shp_reorder_2),
+                          stringsAsFactors = FALSE)
+
+# bind current data together
+wdpa_poly_all_current <- rbind(wdpa_poly_0, wdpa_poly_1, wdpa_poly_2)
+
+# check colnames
+colnames(wdpa_poly_all_previous) == colnames(wdpa_poly_all_current)
+
+# check names
+unique(wdpa_poly_all_current$orig_name)
+unique(wdpa_poly_all_previous$orig_name)
+
+
+# test area to see if things look right
+test_area_current <- wdpa_poly_all_current %>%
+  filter(parent_iso == "GBR") %>%
+  filter(iso3 == "PCN")
+
+test_area_previous <- wdpa_poly_all_previous %>%
+  filter(parent_iso == "GBR") %>%
+  filter(iso3 == "PCN")
+
+
+mapview(test_area_current)
+mapview(test_area_previous)
+
+st_area(test_area_current) 
+# 2021 836075862002 m2 
+# 2022 841909966909 m2
+
+
+ + + +
+
+ +
+ + + + + + + + + + + + + + + + + diff --git a/globalprep/lsp/v2023/lsp_data_prep.html b/globalprep/lsp/v2023/lsp_data_prep.html new file mode 100644 index 00000000..f813af20 --- /dev/null +++ b/globalprep/lsp/v2023/lsp_data_prep.html @@ -0,0 +1,957 @@ + + + + + + + + + + + + + + +OHI 2023: Lasting Special Places + + + + + + + + + + +

+ohi logo
OHI Science | Citation policy +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + +
+ +
+ +
+

1 Summary

+

From Halpern et al. 2012 supplemental info:

+
+

The ‘Lasting Special Places’ sub-goal focuses instead on those +geographic locations that hold particular value for aesthetic, +spiritual, cultural, recreational or existence reasons. This sub-goal is +particularly hard to quantify. Ideally one would survey every community +around the world to determine the top list of special places, and then +assess how those locations are faring relative to a desired state (e.g., +protected or well managed). The reality is that such lists do not exist. +Instead, we assume areas that are protected represent these special +places (i.e. the effort to protect them suggests they are important +places).

+
+
+

Clearly this is an imperfect assumption but in many cases it will be +true. Using lists of protected areas as the catalogue of special places +then creates the problem of determining a reference condition. We do not +know how many special places have yet to be protected, and so we end up +having all identified special places also being protected. To solve this +problem we make two important assumptions. First, we assume that all +countries have roughly the same percentage of their coastal waters and +coastline that qualify as lasting special places. In other words, they +all have the same reference target (as a percentage of the total area). +Second, we assume that the target reference level is 30% of area +protected.

+
+

The model for this goal considers the inland coastal zone (up to 1 km +inland) independently from, and equally weighted with, the offshore +coastal zone (up to 3 nm offshore). The status for this goal is +calculated as:

+

\[X_{LSP} = +\frac{\left(\frac{Area_{P}}{Area_{P_{ref}}} + +\frac{Area_{MPA}}{Area_{MPA_{ref}}}\right)}{2}\]

+

where:

+ +
+
+
+

2 Updates from previous +assessment

+

v2023 Using updated June 2023 data Switched raster +functions over to their terra equivalents.

+

v2021 Using updated February 2021 data

+
+
+
+

3 Data Source

+

Reference: IUCN and UNEP-WCMC (2023), The World +Database on Protected Areas (WDPA) [On-line], June 2023. Cambridge, UK: +UNEP-WCMC. Available at: www.protectedplanet.net.

+

Downloaded: June 12, 2023

+

Description: Shapefile of World Database on +Protected Areas

+

Time range: 1800 - 2022; some protected areas do not +have an associated “status year” and are reported as year 0.

+

Format: Shapefile

+

File location: +Mazu:git-annex/globalprep/_raw_data/wdpa_mpa/d2023/WDPA_Jun2023_Public_shp/

+
+
+
+

4 Setup

+
+
+

5 Methods

+
+

5.1 Filter and re-project +WDPA polygons

+

The WDPA-MPA dataset comes as a shapefile or geodatabase in WGS84 +coordinate reference system.

+
    +
  • For OHI we have chosen to count only protected areas with defined +legal protection, so we apply a filter on the STATUS attribute that +selects only STATUS == “Designated”. +
      +
    • According to the WDPA Manual: STATUS as “Designated” means: “Is +recognized or dedicated through legal means. Implies specific binding +commitment to conservation in the long term. Applicable to government +and non-government sources.”
    • +
    • Other values for STATUS include “Proposed”, “Adopted”, “Inscribed”, +or “Not Reported” and “Established”. +
        +
      • “Adopted” and “Inscribed” are World Heritage or Barcelona Convention +sites; while these may seem important, they are generally protected by +other means (as overlapping “Designated” polygons) in addition to these +values.
      • +
    • +
  • +
  • In 2015, the USA started including polygons that represent marine +management plans, in addition to more strictly defined protected areas. +This info is contained in the “MANG_PLAN” field. +
      +
    • These programmatic management plans variously protect species, +habitats, and (??) and can be MPA or non-MPA.
    • +
    • For OHI we have chosen to count only MPA programmatic management +plans, omitting Non-MPA programmatic management plans.
    • +
  • +
  • For ease of tallying areas, we convert the polygons to a Mollweide +equal-area projection before rasterizing.
  • +
+

Once the polygons have been prepped, we rasterize the results to 500 +m resolution.

+

This process is all done in the script: +1_prep_wdpa_rast.Rmd. After that is complete, move on to +computing zonal statistics.

+
+
+
+

5.2 Compute zonal +statistics

+

Comparing the global WDPA raster to the 3 nautical miles offshore and +1 km inland rasters, we can tally the protected area within each region +and compare to the total area within each region. Note each cell is 500 +m x 500 m, so area is .25 km2, but since we are simply +calculating a ratio, this cancels out.

+
# list intermedite file paths
+zonal_files <- c('zonal_3nm' =  file.path(dir_goal, 'int', 'zonal_stats_3nm.csv'),
+                 'zonal_1km' =  file.path(dir_goal, 'int', 'zonal_stats_1km.csv'),
+                 'zonal_eez' =  file.path(dir_goal, 'int', 'zonal_stats_eez.csv'))
+
+# load raster created in 1_prep_wdpa_rast.rmd
+rast_wdpa <- terra::rast(file.path(dir_goal_anx, 'rast', 'wdpa_2023_moll_500m.tif'))
+
+# point to 500 m rasters for 3 nautical mile coastal regions, and 1 km inland coastal regions.
+dir_zones <- file.path(dir_anx, 'spatial/d2014/data/rgn_mol_raster_500m')
+
+# list filepaths to raster files for LSP areas
+rgn_rast_list <- c(
+  'zonal_3nm' = file.path(dir_zones, 'rgn_offshore3nm_mol_500mcell.tif'),
+  'zonal_1km' = file.path(dir_zones, 'rgn_inland1km_mol_500mcell.tif'),
+  'zonal_eez' = file.path(dir_zones, 'rgn_eez_mol_500mcell.tif'))
+
+### Remove all files in `int` if it's the first time working through this data prep for this assessment
+### Filters out finished zonal files: if zonal files don't exist yet, they will be created (comment out to recalculate)
+zonal_files_to_run <- zonal_files[!file.exists(zonal_files)]
+rgn_rast_list <- rgn_rast_list[!file.exists(zonal_files)]
+
+
+  ### NOTE: The crosstab function returns this warning - does it affect the
+  ### outcomes, or does the function coerce the correct outcome?
+      # Warning message:
+      # In FUN(X[[i]], ...) : integer overflow - use sum(as.numeric(.))
+  ### zonal() wouldn't work since we want to track the frequency of each
+  ### year value within each rgn_id value.
+  
+  lsp_crosstab <- function(rgn_rast_file, rast_values) {
+    rgn_rast <- terra::rast(rgn_rast_file)
+    message('Cross tabulating ', rgn_rast_file)
+    rast_df <- terra::crosstab(c(rast_values, rgn_rast), useNA = TRUE) %>%
+      as.data.frame() %>%
+      setNames(c('year', 'rgn_id', 'n_cells')) %>%
+      mutate(year   = as.integer(as.character(year)),
+             rgn_id = as.integer(as.character(rgn_id))) %>%
+      arrange(rgn_id, year)
+
+    return(rast_df)
+  }
+
+# Processing & saving zonal statistics for a single raster 
+  
+# time stamp
+ptm <- proc.time()
+
+# run the function over the wdpa raster using each of the LSP zones
+x <- lsp_crosstab(rgn_rast_list[1], rast_values = rast_wdpa) #~25 minutes to run #3nm
+print('writeRaster elapsed: ', (proc.time() - ptm)[3])
+
+y <- lsp_crosstab(rgn_rast_list[2], rast_values = rast_wdpa) #19 minutes to run #1km
+print('writeRaster elapsed: ', (proc.time() - ptm)[3])
+
+z <- lsp_crosstab(rgn_rast_list[3], rast_values = rast_wdpa) #~50 min minutes to run #eez
+print('writeRaster elapsed: ', (proc.time() - ptm)[3])
+
+## Save these files to the int folder
+write_csv(x, zonal_files_to_run[1])
+write_csv(y, zonal_files_to_run[2])
+write_csv(z, zonal_files_to_run[3])
+

Once the WDPA raster is cross-tabulated against the OHI region +rasters (both 3 nm offshore and 1 km inland) we have the number of +protected cells, identified by year of protection, within each region. +NA values are unprotected cells.

+
+

5.2.1 Summary of zonal +stats dataframes (3 nm offshore):

+
stats_3nm <- read_csv(zonal_files['zonal_3nm'])
+print(summary(stats_3nm))
+
+
+

5.2.2 Summary of zonal +stats dataframes (1 km inland):

+
stats_1km <- read_csv(zonal_files['zonal_1km'])
+print(summary(stats_1km))
+
+
+

5.2.3 Summary of zonal +stats dataframes (entire EEZ):

+
stats_eez <- read_csv(zonal_files['zonal_eez'])
+print(summary(stats_eez))
+
+
+
+
+

5.3 Calculate protected +area and total area by region

+

Grouping by rgn_id, the total number of cells per region is +determined by summing cell counts across ALL years, including cells with +year == NA (unprotected cells). We can then determine the protected area +for each year by looking at the cumulative sum of cells up to any given +year.

+

Since the cells are 500 m on a side, we can easily calculate area by +multiplying cell count * 0.25 km2 per cell.

+

Finally we can calculate the status of a region for any given year by +finding the ratio of protected:total and normalizing by the goal’s +target of 30% protected area.

+
# read in LSP zone csvs created abvove
+stats_3nm <- read_csv(zonal_files['zonal_3nm'])
+stats_1km <- read_csv(zonal_files['zonal_1km'])
+stats_eez <- read_csv(zonal_files['zonal_eez'])
+
+# assign OHI core reagions to object
+rgn_eez <- region_data() 
+
+# the WDPA data us published annually, so these should all be the year before the OHI year
+max_year <- max(c(stats_1km$year, stats_3nm$year, stats_eez$year), na.rm = TRUE)
+
+### Determine total cells per region (n_cells_tot) and then a cumulative
+### total of cells per region
+
+# OHI Core function
+region_data() #use this function to call rgns_eez, which is called below in the function "calc_areas()"
+
+# create function to calculate values based on OHI regions
+calc_areas <- function(stats_df) {
+  area_df <- stats_df %>%
+    group_by(rgn_id) %>%
+    mutate(n_cells_tot = sum(n_cells),
+           a_tot_km2   = n_cells_tot / 4) %>% 
+    filter(!is.na(year) & !is.na(rgn_id)) %>% 
+    mutate(n_cells_cum = cumsum(n_cells),
+            a_prot_km2  = n_cells_cum / 4) %>% 
+    complete(year = 2000:max_year) %>% 
+    ungroup() %>%
+    fill(-year, .direction = 'down') %>% 
+    dplyr::select(-contains('cell')) %>%
+    distinct() %>%
+    left_join(rgns_eez, by = 'rgn_id') %>%
+    dplyr::select(rgn_id:rgn_name)
+  
+  return(area_df)
+}
+
+# execute functions on stats data frames
+prot_1km <- stats_1km %>% calc_areas()
+prot_3nm <- stats_3nm %>% calc_areas()
+prot_eez <- stats_eez %>% calc_areas()
+
+# write results to int folder as csv
+write_csv(prot_3nm, file.path(dir_goal, 'int', 'area_protected_3nm.csv'))
+write_csv(prot_1km, file.path(dir_goal, 'int', 'area_protected_1km.csv'))
+write_csv(prot_eez, file.path(dir_goal, 'int', 'area_protected_eez.csv'))
+
+
+
+

5.4 Write out layers

+

From the protected area files, write out the individual layers ready +for the Toolbox[TM].

+
    +
  • total area for offshore 3 nm and inland 1 km
  • +
  • protected area for offshore 3 nm and inland 1 km
  • +
+
# read in files and rename
+prot_3nm <- read_csv(file.path(dir_goal, 'int', 'area_protected_3nm.csv')) %>%
+  rename(area = a_tot_km2,
+         a_prot_3nm = a_prot_km2)
+prot_1km <- read_csv(file.path(dir_goal, 'int', 'area_protected_1km.csv')) %>%
+  rename(area = a_tot_km2,
+         a_prot_1km = a_prot_km2)
+
+# create function to create LSP layer
+write_lsp_layer <- function(df, layers, layername) {
+  df1 <- df[ , c('rgn_id', layers)] %>%
+    filter(rgn_id <= 250) %>%
+    distinct()
+  write_csv(df1, file.path(dir_goal, 'output', paste0(layername, '.csv')))
+}
+
+# write LSP output files
+a_tot_3nm <- write_lsp_layer(prot_3nm, 'area', 'rgn_area_offshore3nm')
+a_tot_1km <- write_lsp_layer(prot_1km, 'area', 'rgn_area_inland1km')
+
+a_prot_3nm <- write_lsp_layer(prot_3nm, c('year', 'a_prot_3nm'), 'lsp_prot_area_offshore3nm')
+a_prot_1km <- write_lsp_layer(prot_1km, c('year', 'a_prot_1km'), 'lsp_prot_area_inland1km')
+

Some goals require calculation of resilience nearshore (3nm) or +entire EEZ.

+
area_ref = .30 ### 30% of area protected = reference point
+
+# read in regional data csvs from int
+resil_3nm <- read_csv(file.path(dir_goal, 'int', 'area_protected_3nm.csv')) %>%
+  mutate(resilience.score = (a_prot_km2 / a_tot_km2) / area_ref,
+         resilience.score = ifelse(resilience.score > 1, 1, resilience.score))
+
+resil_eez <- read_csv(file.path(dir_goal, 'int', 'area_protected_eez.csv')) %>%
+  mutate(resilience.score = (a_prot_km2 / a_tot_km2) / area_ref,
+         resilience.score = ifelse(resilience.score > 1, 1, resilience.score))
+
+## Save resilience scores for 3 nm and EEZ data in output
+  tmp_3nm <- resil_3nm %>%
+    dplyr::select(rgn_id, year, resilience.score)
+  write_csv(tmp_3nm, file.path(dir_goal, 'output', "mpa_3nm_resilience.csv"))
+
+  tmp_eez <- resil_eez %>%
+    dplyr::select(rgn_id, year, resilience.score)
+  write_csv(tmp_eez, file.path(dir_goal, 'output', "mpa_eez_resilience.csv"))
+
+
+
+
+

6 Gapfill

+

There was no gapfilling for these data. Created gapfill files with +values of 0.

+
library(dplyr)
+
+res_eez <- read.csv("output/mpa_eez_resilience.csv")%>%
+  mutate(resilience.score = 0) %>% 
+  rename(gapfilled = resilience.score)
+
+write.csv(res_eez, "output/mpa_eez_resilience_gf.csv", row.names=FALSE)
+
+res_3nm <- read.csv("output/mpa_3nm_resilience.csv")%>%
+  mutate(resilience.score = 0) %>% 
+  rename(gapfilled = resilience.score)
+
+write.csv(res_3nm, "output/mpa_3nm_resilience_gf.csv", row.names=FALSE)
+
+inland <- read.csv("output/lsp_prot_area_inland1km.csv") %>%
+  mutate(a_prot_1km = 0) %>% 
+  rename(gapfilled = a_prot_1km)
+
+write.csv(inland, "output/lsp_prot_area_inland1km_gf.csv", row.names=FALSE)
+
+offshore <- read.csv("output/lsp_prot_area_offshore3nm.csv") %>%
+  mutate(a_prot_3nm = 0)%>% 
+  rename(gapfilled = a_prot_3nm)
+
+write.csv(offshore, "output/lsp_prot_area_offshore3nm_gf.csv", row.names=FALSE)
+
+
+
+

7 Data checking

+

Plot scores for 2020 vs 2019 assessment years

+ +
library(ggplot2)
+#library(plotly)
+
+## Calculates this year and last year's coastal marine protected area ratio (CMPA/Ref-CMPA) for plotting
+status_3nm_new <- read_csv(file.path(dir_goal, 'output', 'lsp_prot_area_offshore3nm.csv')) %>%
+  full_join(read_csv(file.path(dir_goal, 'output', 'rgn_area_offshore3nm.csv')),
+            by = 'rgn_id') %>%
+  mutate(pct_prot_3nm_new = a_prot_3nm / area,
+         status_3nm_new   = pct_prot_3nm_new / 0.3,
+         status_3nm_new   = ifelse(status_3nm_new > 1, 1, status_3nm_new)) %>%
+  filter(year == max(year)) %>%
+  dplyr::select(rgn_id, pct_prot_3nm_new, status_3nm_new)
+
+status_3nm_old <- read_csv(file.path(dir_goal, '../v2022/output', 'lsp_prot_area_offshore3nm.csv')) %>%
+  full_join(read_csv(file.path(dir_goal, 'output', 'rgn_area_offshore3nm.csv')),
+            by = 'rgn_id') %>%
+  mutate(pct_prot_3nm_old = a_prot_3nm / area,
+         status_3nm_old   = pct_prot_3nm_old / 0.3,
+         status_3nm_old   = ifelse(status_3nm_old > 1, 1, status_3nm_old)) %>%
+  filter(year == max(year)) %>%
+  dplyr::select(rgn_id, pct_prot_3nm_old, status_3nm_old)
+
+## Calculates this year and last year's coastline protected ratio (CP/Ref-CP) for plotting
+status_1km_new <- read_csv(file.path(dir_goal, 'output', 'lsp_prot_area_inland1km.csv')) %>%
+  full_join(read_csv(file.path(dir_goal, 'output', 'rgn_area_inland1km.csv')),
+            by = 'rgn_id') %>%
+  mutate(pct_prot_1km_new = a_prot_1km / area,
+         status_1km_new   = pct_prot_1km_new / 0.3,
+         status_1km_new   = ifelse(status_1km_new > 1, 1, status_1km_new)) %>%
+  filter(year == max(year)) %>%
+  dplyr::select(rgn_id, pct_prot_1km_new, status_1km_new)
+
+status_1km_old <- read_csv(file.path(dir_goal, '../v2022/output', 'lsp_prot_area_inland1km.csv')) %>%
+  full_join(read_csv(file.path(dir_goal, 'output', 'rgn_area_inland1km.csv')),
+            by = 'rgn_id') %>%
+  mutate(pct_prot_1km_old = a_prot_1km / area,
+         status_1km_old   = pct_prot_1km_old / 0.3,
+         status_1km_old   = ifelse(status_1km_old > 1, 1, status_1km_old)) %>%
+  filter(year == max(year)) %>%
+  dplyr::select(rgn_id, pct_prot_1km_old, status_1km_old)
+
+# Updated sequence to use pivot_longer() instead of gather()
+lsp_new_old <- status_3nm_new %>%
+  full_join(status_3nm_old, by = c('rgn_id')) %>%
+  full_join(status_1km_new, by = c('rgn_id')) %>%
+  full_join(status_1km_old, by = c('rgn_id')) %>%
+  mutate(status_old = (status_3nm_old + status_1km_old) / 2,
+         status_new = (status_3nm_new + status_1km_new) / 2) %>%
+  pivot_longer(cols = contains('new'), names_to = 'rgn', values_to = 'score_new') %>%
+  pivot_longer(cols = contains('old'), names_to = 'rgn_old', values_to = 'score_old') %>% 
+  mutate(rgn = str_replace(rgn, '_new', ''),
+         rgn_old = str_replace(rgn_old, '_old', ''),
+         score_new = round(score_new, 3),
+         score_old = round(score_old, 3)) %>%
+  filter(rgn_id <= 250) %>%
+  filter(rgn == rgn_old) %>%
+  dplyr::select(-rgn_old) %>%
+  left_join(rgns_eez, by = 'rgn_id') %>%
+  dplyr::select(rgn_id:rgn_name)
+
+# plot score change results
+lsp_status_plot <- ggplot(lsp_new_old, 
+                        aes(x = score_old, y = score_new, key = rgn_name)) +
+  geom_point(alpha = .6) +
+  theme(legend.position = 'none') +
+  geom_abline(slope = 1, intercept = 0, color = 'red') +
+  labs(x = 'LSP status v2022 (data through Jan 2022)',
+       y = 'LSP status v2023 (data through Jun 2023)',
+       title = 'Comparing LSP status: 2023 vs 2022') +
+  facet_wrap( ~ rgn)
+
+lsp_status_plot #got rid of ggplotly
+
+# save plot to figs folder
+ggsave(file.path(dir_goal, 'Figs/plot_v2022_v2023.png'), 
+       plot = lsp_status_plot, height = 4.5, width = 6)
+
+# create data frame with scores that changed by more than 0.05
+mjr_score_change <- lsp_new_old %>%
+  mutate(diff = score_new - score_old) %>%
+  filter(rgn == 'status' & abs(diff) > 0.05) %>%
+  mutate(abs_diff = abs(diff))
+
+# save major score changes to output folder as csv
+write.csv(mjr_score_change, "output/major_changes_2023.csv")
+
+ + + + +
+ + + + + + + + + + + + + + + diff --git a/globalprep/prs_targetedharvest/v2023/output/fao_targeted.csv b/globalprep/prs_targetedharvest/v2023/output/fao_targeted.csv index ffcc8025..5dce7464 100644 --- a/globalprep/prs_targetedharvest/v2023/output/fao_targeted.csv +++ b/globalprep/prs_targetedharvest/v2023/output/fao_targeted.csv @@ -465,15 +465,15 @@ rgn_id,year,pressure_score 7,1981,0 7,1982,0 7,1983,0 -7,1984,2.7995520716685332e-5 -7,1985,2.7995520716685332e-5 -7,1986,2.7995520716685332e-5 -7,1987,2.7995520716685332e-5 -7,1988,2.7995520716685332e-5 -7,1989,2.7995520716685332e-5 -7,1990,8.398656215005599e-4 -7,1991,5.599104143337066e-4 -7,1992,2.799552071668533e-4 +7,1984,2.8871694191015142e-5 +7,1985,2.8871694191015142e-5 +7,1986,2.8871694191015142e-5 +7,1987,2.8871694191015142e-5 +7,1988,2.8871694191015142e-5 +7,1989,2.8871694191015142e-5 +7,1990,8.661508257304543e-4 +7,1991,5.774338838203028e-4 +7,1992,2.887169419101514e-4 7,1993,0 7,1994,0 7,1995,0 @@ -595,39 +595,39 @@ rgn_id,year,pressure_score 9,1967,0 9,1968,0 9,1969,0 -9,1970,0 -9,1971,0 -9,1972,0 -9,1973,0 -9,1974,0 -9,1975,0 -9,1976,0 -9,1977,0 -9,1978,0 -9,1979,0 -9,1980,0 -9,1981,0 -9,1982,0 -9,1983,0 -9,1984,0 -9,1985,0 -9,1986,0 -9,1987,0 -9,1988,0 -9,1989,0 -9,1990,0 -9,1991,0 -9,1992,0 -9,1993,0 -9,1994,0 -9,1995,0 -9,1996,0 -9,1997,0 -9,1998,0 -9,1999,0 -9,2000,0 -9,2001,0 -9,2002,0 +9,1970,2.8871694191015142e-5 +9,1971,2.8871694191015142e-5 +9,1972,2.8871694191015142e-5 +9,1973,2.8871694191015142e-5 +9,1974,2.8871694191015142e-5 +9,1975,2.8871694191015142e-5 +9,1976,2.8871694191015142e-5 +9,1977,2.8871694191015142e-5 +9,1978,2.8871694191015142e-5 +9,1979,2.8871694191015142e-5 +9,1980,0.001443584709550757 +9,1981,0.001443584709550757 +9,1982,0.00202101859337106 +9,1983,0.00202101859337106 +9,1984,0.00202101859337106 +9,1985,0.002309735535281211 +9,1986,0.002309735535281211 +9,1987,0.002309735535281211 +9,1988,0.002309735535281211 +9,1989,0.002309735535281211 +9,1990,0.002887169419101514 +9,1991,0.00202101859337106 +9,1992,0.00202101859337106 +9,1993,5.774338838203028e-4 +9,1994,5.774338838203028e-4 +9,1995,2.8871694191015142e-5 +9,1996,2.8871694191015142e-5 +9,1997,2.8871694191015142e-5 +9,1998,2.8871694191015142e-5 +9,1999,2.8871694191015142e-5 +9,2000,2.8871694191015142e-5 +9,2001,2.8871694191015142e-5 +9,2002,2.8871694191015142e-5 9,2003,0 9,2004,0 9,2005,0 @@ -900,16 +900,16 @@ rgn_id,year,pressure_score 13,1984,0 13,1985,0 13,1986,0 -13,1987,2.7995520716685332e-5 -13,1988,2.7995520716685332e-5 -13,1989,2.7995520716685332e-5 -13,1990,2.7995520716685332e-5 -13,1991,2.7995520716685332e-5 -13,1992,2.7995520716685332e-5 -13,1993,2.7995520716685332e-5 -13,1994,2.7995520716685332e-5 -13,1995,2.7995520716685332e-5 -13,1996,2.7995520716685332e-5 +13,1987,2.8871694191015142e-5 +13,1988,2.8871694191015142e-5 +13,1989,2.8871694191015142e-5 +13,1990,2.8871694191015142e-5 +13,1991,2.8871694191015142e-5 +13,1992,2.8871694191015142e-5 +13,1993,2.8871694191015142e-5 +13,1994,2.8871694191015142e-5 +13,1995,2.8871694191015142e-5 +13,1996,2.8871694191015142e-5 13,1997,0 13,1998,0 13,1999,0 @@ -955,24 +955,24 @@ rgn_id,year,pressure_score 14,1967,0 14,1968,0 14,1969,0 -14,1970,0.5741881298992161 -14,1971,0.6570548712206047 -14,1972,0.5131578947368421 -14,1973,0.5125979843225084 -14,1974,0.541993281075028 -14,1975,0.5086786114221724 -14,1976,5.599104143337066e-4 +14,1970,0.5921584478577205 +14,1971,0.6776186626631253 +14,1972,0.5292181545213075 +14,1973,0.5286407206374872 +14,1974,0.5589559995380531 +14,1975,0.5245986834507451 +14,1976,5.774338838203028e-4 14,1977,0 -14,1978,2.799552071668533e-4 -14,1979,0.0013997760358342665 -14,1980,0.0011198208286674132 +14,1978,2.887169419101514e-4 +14,1979,0.001443584709550757 +14,1980,0.0011548677676406056 14,1981,0 14,1982,0 -14,1983,0.8880179171332587 -14,1984,0.4787234042553192 -14,1985,0.4958006718924972 -14,1986,0.19876819708846585 -14,1987,0.004759238521836506 +14,1983,0.9158101397390003 +14,1984,0.4937059706663589 +14,1985,0.5113177041228781 +14,1986,0.2049890287562075 +14,1987,0.004908188012472574 14,1988,0 14,1989,0 14,1990,1 @@ -1019,48 +1019,48 @@ rgn_id,year,pressure_score 15,1959,0 15,1960,0 15,1961,0 -15,1962,2.7995520716685332e-5 -15,1963,2.7995520716685332e-5 -15,1964,2.7995520716685332e-5 -15,1965,0.027995520716685332 -15,1966,0.027995520716685332 -15,1967,0.083986562150056 -15,1968,0.167973124300112 -15,1969,0.22396416573348266 -15,1970,0.027995520716685332 -15,1971,0.027995520716685332 -15,1972,0.027995520716685332 -15,1973,0.027995520716685332 -15,1974,0.0383538633818589 -15,1975,0.040873460246360585 -15,1976,0.015957446808510637 -15,1977,0.07502799552071669 -15,1978,0.0509518477043673 -15,1979,0.011198208286674132 -15,1980,0.041993281075028 -15,1981,0.010078387458006719 -15,1982,8.398656215005599e-4 -15,1983,0.0033594624860022394 -15,1984,0.013717805151175811 -15,1985,0.011478163493840985 +15,1962,2.8871694191015142e-5 +15,1963,2.8871694191015142e-5 +15,1964,2.8871694191015142e-5 +15,1965,0.02887169419101514 +15,1966,0.02887169419101514 +15,1967,0.08661508257304543 +15,1968,0.17323016514609085 +15,1969,0.23097355352812113 +15,1970,0.02887169419101514 +15,1971,0.02887169419101514 +15,1972,0.02887169419101514 +15,1973,0.02887169419101514 +15,1974,0.03955422104169074 +15,1975,0.042152673518882106 +15,1976,0.01645686568887863 +15,1977,0.07737614043192058 +15,1978,0.052546483427647554 +15,1979,0.011548677676406056 +15,1980,0.04330754128652271 +15,1981,0.01039380990876545 +15,1982,8.661508257304543e-4 +15,1983,0.003464603302921817 +15,1984,0.014147130153597419 +15,1985,0.011837394618316208 15,1986,0 15,1987,0 15,1988,0 15,1989,0 15,1990,0 -15,1991,0.013997760358342666 -15,1992,0.004759238521836506 +15,1991,0.01443584709550757 +15,1992,0.004908188012472574 15,1993,0 15,1994,0 -15,1995,2.799552071668533e-4 -15,1996,2.799552071668533e-4 +15,1995,2.887169419101514e-4 +15,1996,2.887169419101514e-4 15,1997,0 -15,1998,5.599104143337066e-4 -15,1999,5.599104143337066e-4 -15,2000,2.799552071668533e-4 -15,2001,2.799552071668533e-4 +15,1998,5.774338838203028e-4 +15,1999,5.774338838203028e-4 +15,2000,2.887169419101514e-4 +15,2001,2.887169419101514e-4 15,2002,0 -15,2003,2.799552071668533e-4 +15,2003,2.887169419101514e-4 15,2004,0 15,2005,0 15,2006,0 @@ -1079,78 +1079,78 @@ rgn_id,year,pressure_score 15,2019,0 15,2020,0 15,2021,0 -16,1950,0.10862262038073908 -16,1951,0.3426651735722284 -16,1952,0.5002799552071668 -16,1953,0.5601903695408734 -16,1954,0.5708286674132139 -16,1955,0.5190369540873461 -16,1956,0.5741881298992161 -16,1957,0.5879059350503919 -16,1958,0.5865061590145577 -16,1959,0.5069988801791714 -16,1960,0.5064389697648376 -16,1961,0.5422732362821948 -16,1962,0.36954087346024633 -16,1963,0.20156774916013437 -16,1964,0.19876819708846585 -16,1965,0.187010078387458 -16,1966,0.1696528555431131 -16,1967,0.16433370660694288 -16,1968,0.18421052631578946 -16,1969,0.1900895856662934 -16,1970,0.2236842105263158 -16,1971,0.24076147816349383 -16,1972,0.2667973124300112 -16,1973,0.27183650615901456 -16,1974,0.3023516237402016 -16,1975,0.3281075027995521 -16,1976,0.27855543113101905 -16,1977,0.17469204927211646 -16,1978,0.1900895856662934 +16,1950,0.11202217346113874 +16,1951,0.3533895368980253 +16,1952,0.5159371751934406 +16,1953,0.5777226007622129 +16,1954,0.5886938445547987 +16,1955,0.5352812103014207 +16,1956,0.5921584478577205 +16,1957,0.606305578011318 +16,1958,0.6048619933017672 +16,1959,0.5228663817992842 +16,1960,0.5222889479154639 +16,1961,0.5592447164799633 +16,1962,0.38110636332139985 +16,1963,0.207876198175309 +16,1964,0.2049890287562075 +16,1965,0.19286291719598114 +16,1966,0.17496246679755176 +16,1967,0.1694768449012589 +16,1968,0.18997574777687962 +16,1969,0.1960388035569928 +16,1970,0.23068483658621097 +16,1971,0.2482965700427302 +16,1972,0.2751472456403743 +16,1973,0.28034415059475704 +16,1974,0.3118142972629635 +16,1975,0.33837625591869747 +16,1976,0.28727335720060065 +16,1977,0.18015937175193447 +16,1978,0.1960388035569928 16,1979,0 16,1980,0 16,1981,0 16,1982,0 -16,1983,0.003079507278835386 +16,1983,0.0031758863610116656 16,1984,0 16,1985,0 16,1986,0 16,1987,0 -16,1988,0.010078387458006719 -16,1989,0.009798432250839866 -16,1990,0.004759238521836506 -16,1991,0.005879059350503919 -16,1992,0.005039193729003359 -16,1993,0.009518477043673012 -16,1994,0.0083986562150056 -16,1995,0.009518477043673012 -16,1996,0.006159014557670772 -16,1997,0.008678611422172453 -16,1998,0.016517357222844344 -16,1999,0.011758118701007838 -16,2000,0.0075587905935050395 -16,2001,0.008958566629339306 -16,2002,0.008958566629339306 -16,2003,0.0083986562150056 -16,2004,0.011758118701007838 -16,2005,0.013717805151175811 -16,2006,0.030235162374020158 -16,2007,0.018756998880179173 -16,2008,0.013157894736842105 -16,2009,0.009798432250839866 -16,2010,0.010638297872340425 -16,2011,0.023516237402015677 -16,2012,0.015117581187010079 -16,2013,0.006998880179171333 -16,2014,0.010638297872340425 -16,2015,0.01791713325867861 -16,2016,0.004479283314669653 -16,2017,0.0011198208286674132 -16,2018,0.01959686450167973 -16,2019,0.027435610302351622 -16,2020,0.020156774916013438 -16,2021,0.02855543113101904 +16,1988,0.01039380990876545 +16,1989,0.010105092966855298 +16,1990,0.004908188012472574 +16,1991,0.006063055780113179 +16,1992,0.005196904954382725 +16,1993,0.009816376024945148 +16,1994,0.008661508257304542 +16,1995,0.009816376024945148 +16,1996,0.006351772722023331 +16,1997,0.008950225199214694 +16,1998,0.017034299572698933 +16,1999,0.012126111560226359 +16,2000,0.007795357431574088 +16,2001,0.009238942141124844 +16,2002,0.009238942141124844 +16,2003,0.008661508257304542 +16,2004,0.012126111560226359 +16,2005,0.014147130153597419 +16,2006,0.031181429726296353 +16,2007,0.019344035107980145 +16,2008,0.013569696269777116 +16,2009,0.010105092966855298 +16,2010,0.010971243792585754 +16,2011,0.024252223120452717 +16,2012,0.015590714863148177 +16,2013,0.007217923547753785 +16,2014,0.010971243792585754 +16,2015,0.01847788428224969 +16,2016,0.004619471070562422 +16,2017,0.0011548677676406056 +16,2018,0.020210185933710597 +16,2019,0.028294260307194837 +16,2020,0.0207876198175309 +16,2021,0.029449128074835445 17,1950,0 17,1951,0 17,1952,0 @@ -1243,46 +1243,46 @@ rgn_id,year,pressure_score 18,1967,0 18,1968,0 18,1969,0 -18,1970,5.5991041433370664e-5 -18,1971,5.5991041433370664e-5 -18,1972,5.5991041433370664e-5 -18,1973,5.5991041433370664e-5 -18,1974,0.012625979843225084 -18,1975,0.010106382978723405 -18,1976,0.012038073908174692 -18,1977,0.011758118701007838 -18,1978,0.004479283314669653 -18,1979,0.003079507278835386 -18,1980,0.002799552071668533 -18,1981,0.0033594624860022394 -18,1982,0.008678611422172453 -18,1983,0.005039193729003359 -18,1984,0.02631578947368421 -18,1985,0.0377939529675252 -18,1986,0.029955207166853303 -18,1987,0.012877939529675251 -18,1988,0.004479283314669653 -18,1989,0.005319148936170213 -18,1990,0.005319148936170213 -18,1991,0.005039193729003359 -18,1992,0.007278835386338186 -18,1993,0.01931690929451288 -18,1994,0.011198208286674132 -18,1995,0.003639417693169093 -18,1996,0.012877939529675251 -18,1997,0.003079507278835386 -18,1998,0.0011198208286674132 -18,1999,0.002799552071668533 -18,2000,0.002799552071668533 -18,2001,0.002799552071668533 -18,2002,0.0013997760358342665 -18,2003,5.5991041433370664e-5 -18,2004,5.5991041433370664e-5 -18,2005,5.5991041433370664e-5 -18,2006,5.5991041433370664e-5 -18,2007,5.5991041433370664e-5 -18,2008,5.5991041433370664e-5 -18,2009,5.5991041433370664e-5 +18,1970,5.7743388382030285e-5 +18,1971,5.7743388382030285e-5 +18,1972,5.7743388382030285e-5 +18,1973,5.7743388382030285e-5 +18,1974,0.01302113408014783 +18,1975,0.010422681602956466 +18,1976,0.01241482850213651 +18,1977,0.012126111560226359 +18,1978,0.004619471070562422 +18,1979,0.0031758863610116656 +18,1980,0.002887169419101514 +18,1981,0.003464603302921817 +18,1982,0.008950225199214694 +18,1983,0.005196904954382725 +18,1984,0.027139392539554233 +18,1985,0.03897678715787044 +18,1986,0.0308927127843862 +18,1987,0.013280979327866965 +18,1988,0.004619471070562422 +18,1989,0.005485621896292877 +18,1990,0.005485621896292877 +18,1991,0.005196904954382725 +18,1992,0.007506640489663936 +18,1993,0.01992146899180045 +18,1994,0.011548677676406056 +18,1995,0.003753320244831968 +18,1996,0.013280979327866965 +18,1997,0.0031758863610116656 +18,1998,0.0011548677676406056 +18,1999,0.002887169419101514 +18,2000,0.002887169419101514 +18,2001,0.002887169419101514 +18,2002,0.001443584709550757 +18,2003,5.7743388382030285e-5 +18,2004,5.7743388382030285e-5 +18,2005,5.7743388382030285e-5 +18,2006,5.7743388382030285e-5 +18,2007,5.7743388382030285e-5 +18,2008,5.7743388382030285e-5 +18,2009,5.7743388382030285e-5 18,2010,0 18,2011,0 18,2012,0 @@ -1379,31 +1379,31 @@ rgn_id,year,pressure_score 20,1959,0 20,1960,0 20,1961,0 -20,1962,0.07054871220604703 -20,1963,0.09686450167973125 -20,1964,0.13213885778275475 -20,1965,0.07446808510638298 -20,1966,0.09042553191489362 -20,1967,0.09966405375139978 -20,1968,0.09630459126539753 -20,1969,0.11786114221724524 -20,1970,0.20716685330347145 -20,1971,0.21136618141097424 -20,1972,0.2152855543113102 -20,1973,0.24804031354983203 -20,1974,0.17301231802911535 -20,1975,0.1606942889137738 -20,1976,0.15033594624860022 -20,1977,0.29647256438969766 -20,1978,0.2956326987681971 -20,1979,0.25867861142217247 -20,1980,0.2597984322508399 -20,1981,0.21360582306830908 -20,1982,0.2522396416573348 -20,1983,0.1366181410974244 -20,1984,0.11002239641657335 -20,1985,0.03471444568868981 -20,1986,0.01931690929451288 +20,1962,0.07275666936135816 +20,1963,0.09989606190091238 +20,1964,0.13627439658159146 +20,1965,0.07679870654810027 +20,1966,0.0932555722369789 +20,1967,0.10278323132001391 +20,1968,0.09931862801709208 +20,1969,0.12154983254417374 +20,1970,0.21365053701351205 +20,1971,0.2179812911421643 +20,1972,0.22202332832890642 +20,1973,0.25580321053239413 +20,1974,0.17842707010047357 +20,1975,0.1657235246564269 +20,1976,0.1550409978057513 +20,1977,0.3057512414828503 +20,1978,0.3048850906571199 +20,1979,0.2667744543249799 +20,1980,0.2679293220926205 +20,1981,0.22029102667744552 +20,1982,0.26013396466104644 +20,1983,0.1408938676521539 +20,1984,0.1134657581706895 +20,1985,0.03580090079685878 +20,1986,0.01992146899180045 20,1987,0 20,1988,0 20,1989,0 @@ -1413,32 +1413,32 @@ rgn_id,year,pressure_score 20,1993,0 20,1994,0 20,1995,0 -20,1996,0.06187010078387458 -20,1997,0.043673012318029114 -20,1998,0.031075027995520716 -20,1999,0.04227323628219485 -20,2000,0.048712206047032476 -20,2001,0.13353863381858902 -20,2002,0.09490481522956327 -20,2003,0.1343784994400896 -20,2004,0.07110862262038074 -20,2005,0.15425531914893617 -20,2006,0.1522956326987682 -20,2007,0.1707726763717805 -20,2008,0.2038073908174692 -20,2009,0.15565509518477044 -20,2010,0.16153415453527437 -20,2011,0.18029115341545351 -20,2012,0.7382418812989922 -20,2013,0.5389137737961927 -20,2014,0.5137178051511758 -20,2015,0.3782194848824188 -20,2016,0.3650615901455767 -20,2017,0.37737961926091823 -20,2018,0.31298992161254197 -20,2019,0.47592385218365063 -20,2020,5.599104143337066e-4 -20,2021,0.0033594624860022394 +20,1996,0.06380644416214346 +20,1997,0.04503984293798362 +20,1998,0.032047580552026805 +20,1999,0.04359625822843286 +20,2000,0.050236747892366346 +20,2001,0.1377179812911422 +20,2002,0.09787504330754133 +20,2003,0.13858413211687268 +20,2004,0.07333410324517846 +20,2005,0.15908303499249343 +20,2006,0.15706201639912237 +20,2007,0.17611733456519235 +20,2008,0.21018593371059022 +20,2009,0.16052661970204418 +20,2010,0.16658967548215736 +20,2011,0.1859337105901375 +20,2012,0.7613465758170692 +20,2013,0.5557801131770415 +20,2014,0.5297955884051279 +20,2015,0.39005658852061453 +20,2016,0.3764868922508374 +20,2017,0.3891904376948841 +20,2018,0.3227855410555493 +20,2019,0.4908188012472574 +20,2020,5.774338838203028e-4 +20,2021,0.003464603302921817 21,1950,0 21,1951,0 21,1952,0 @@ -1972,22 +1972,22 @@ rgn_id,year,pressure_score 31,1976,0 31,1977,0 31,1978,0 -31,1979,0.014557670772676373 -31,1980,0.014557670772676373 -31,1981,0.014557670772676373 -31,1982,0.014557670772676373 -31,1983,0.014557670772676373 -31,1984,0.013997760358342666 -31,1985,0.002799552071668533 -31,1986,0.002799552071668533 -31,1987,0.002799552071668533 -31,1988,0.002799552071668533 -31,1989,0.002799552071668533 -31,1990,0.002799552071668533 -31,1991,0.002799552071668533 +31,1979,0.015013280979327873 +31,1980,0.015013280979327873 +31,1981,0.015013280979327873 +31,1982,0.015013280979327873 +31,1983,0.015013280979327873 +31,1984,0.01443584709550757 +31,1985,0.002887169419101514 +31,1986,0.002887169419101514 +31,1987,0.002887169419101514 +31,1988,0.002887169419101514 +31,1989,0.002887169419101514 +31,1990,0.002887169419101514 +31,1991,0.002887169419101514 31,1992,0 31,1993,0 -31,1994,0.002799552071668533 +31,1994,0.002887169419101514 31,1995,0 31,1996,0 31,1997,0 @@ -2749,36 +2749,36 @@ rgn_id,year,pressure_score 42,1961,0 42,1962,0 42,1963,0 -42,1964,2.7995520716685332e-5 -42,1965,2.7995520716685332e-5 -42,1966,2.7995520716685332e-5 -42,1967,2.7995520716685332e-5 -42,1968,2.7995520716685332e-5 -42,1969,2.7995520716685332e-5 -42,1970,2.7995520716685332e-5 -42,1971,2.7995520716685332e-5 -42,1972,2.7995520716685332e-5 -42,1973,2.7995520716685332e-5 -42,1974,2.7995520716685332e-5 -42,1975,2.7995520716685332e-5 -42,1976,2.7995520716685332e-5 -42,1977,2.7995520716685332e-5 -42,1978,2.7995520716685332e-5 -42,1979,2.7995520716685332e-5 -42,1980,2.7995520716685332e-5 -42,1981,2.7995520716685332e-5 -42,1982,0.006438969764837626 -42,1983,0.008678611422172453 -42,1984,0.0083986562150056 -42,1985,0.0075587905935050395 -42,1986,0.0083986562150056 -42,1987,0.0083986562150056 -42,1988,0.0083986562150056 -42,1989,0.0083986562150056 -42,1990,0.006998880179171333 -42,1991,0.006998880179171333 -42,1992,0.006998880179171333 -42,1993,0.005599104143337066 +42,1964,2.8871694191015142e-5 +42,1965,2.8871694191015142e-5 +42,1966,2.8871694191015142e-5 +42,1967,2.8871694191015142e-5 +42,1968,2.8871694191015142e-5 +42,1969,2.8871694191015142e-5 +42,1970,2.8871694191015142e-5 +42,1971,2.8871694191015142e-5 +42,1972,2.8871694191015142e-5 +42,1973,2.8871694191015142e-5 +42,1974,2.8871694191015142e-5 +42,1975,2.8871694191015142e-5 +42,1976,2.8871694191015142e-5 +42,1977,2.8871694191015142e-5 +42,1978,2.8871694191015142e-5 +42,1979,2.8871694191015142e-5 +42,1980,2.8871694191015142e-5 +42,1981,2.8871694191015142e-5 +42,1982,0.006640489663933482 +42,1983,0.008950225199214694 +42,1984,0.008661508257304542 +42,1985,0.007795357431574088 +42,1986,0.008661508257304542 +42,1987,0.008661508257304542 +42,1988,0.008661508257304542 +42,1989,0.008661508257304542 +42,1990,0.007217923547753785 +42,1991,0.007217923547753785 +42,1992,0.007217923547753785 +42,1993,0.005774338838203028 42,1994,0 42,1995,0 42,1996,0 @@ -2821,18 +2821,18 @@ rgn_id,year,pressure_score 43,1961,0 43,1962,0 43,1963,0 -43,1964,2.7995520716685332e-5 -43,1965,2.7995520716685332e-5 -43,1966,2.7995520716685332e-5 -43,1967,2.7995520716685332e-5 -43,1968,2.7995520716685332e-5 -43,1969,2.7995520716685332e-5 -43,1970,2.7995520716685332e-5 -43,1971,2.7995520716685332e-5 -43,1972,2.7995520716685332e-5 +43,1964,2.8871694191015142e-5 +43,1965,2.8871694191015142e-5 +43,1966,2.8871694191015142e-5 +43,1967,2.8871694191015142e-5 +43,1968,2.8871694191015142e-5 +43,1969,2.8871694191015142e-5 +43,1970,2.8871694191015142e-5 +43,1971,2.8871694191015142e-5 +43,1972,2.8871694191015142e-5 43,1973,0 -43,1974,2.7995520716685332e-5 -43,1975,2.7995520716685332e-5 +43,1974,2.8871694191015142e-5 +43,1975,2.8871694191015142e-5 43,1976,0 43,1977,0 43,1978,0 @@ -2901,10 +2901,10 @@ rgn_id,year,pressure_score 44,1969,0 44,1970,0 44,1971,0 -44,1972,2.799552071668533e-4 -44,1973,5.599104143337066e-4 -44,1974,5.599104143337066e-4 -44,1975,5.599104143337066e-4 +44,1972,2.887169419101514e-4 +44,1973,5.774338838203028e-4 +44,1974,5.774338838203028e-4 +44,1975,5.774338838203028e-4 44,1976,0 44,1977,0 44,1978,0 @@ -3217,10 +3217,10 @@ rgn_id,year,pressure_score 48,1997,0 48,1998,0 48,1999,0 -48,2000,0.003639417693169093 -48,2001,0.006159014557670772 -48,2002,0.0013997760358342665 -48,2003,2.799552071668533e-4 +48,2000,0.003753320244831968 +48,2001,0.006351772722023331 +48,2002,0.001443584709550757 +48,2003,2.887169419101514e-4 48,2004,0 48,2005,0 48,2006,0 @@ -3779,19 +3779,19 @@ rgn_id,year,pressure_score 56,1983,0 56,1984,0 56,1985,0 -56,1986,0.007278835386338186 -56,1987,8.398656215005599e-4 -56,1988,0.003639417693169093 -56,1989,0.003639417693169093 -56,1990,0.002799552071668533 -56,1991,0.002799552071668533 -56,1992,0.002799552071668533 -56,1993,0.0013997760358342665 -56,1994,2.7995520716685332e-5 -56,1995,2.7995520716685332e-5 -56,1996,2.7995520716685332e-5 -56,1997,2.7995520716685332e-5 -56,1998,2.7995520716685332e-5 +56,1986,0.007506640489663936 +56,1987,8.661508257304543e-4 +56,1988,0.003753320244831968 +56,1989,0.003753320244831968 +56,1990,0.002887169419101514 +56,1991,0.002887169419101514 +56,1992,0.002887169419101514 +56,1993,0.001443584709550757 +56,1994,2.8871694191015142e-5 +56,1995,2.8871694191015142e-5 +56,1996,2.8871694191015142e-5 +56,1997,2.8871694191015142e-5 +56,1998,2.8871694191015142e-5 56,1999,0 56,2000,0 56,2001,0 @@ -4013,16 +4013,16 @@ rgn_id,year,pressure_score 59,2001,0 59,2002,0 59,2003,0 -59,2004,0.005319148936170213 -59,2005,0.005319148936170213 -59,2006,0.008118701007838746 +59,2004,0.005485621896292877 +59,2005,0.005485621896292877 +59,2006,0.00837279131539439 59,2007,0 59,2008,0 -59,2009,0.0041993281075028 +59,2009,0.004330754128652271 59,2010,0 59,2011,0 -59,2012,0.0041993281075028 -59,2013,0.004759238521836506 +59,2012,0.004330754128652271 +59,2013,0.004908188012472574 59,2014,0 59,2015,0 59,2016,0 @@ -5007,38 +5007,38 @@ rgn_id,year,pressure_score 73,1987,1 73,1988,1 73,1989,1 -73,1990,0.977043673012318 -73,1991,0.7553191489361702 -73,1992,0.49272116461366183 -73,1993,0.24692049272116462 -73,1994,0.3157894736842105 -73,1995,0.335946248600224 -73,1996,0.28023516237402013 -73,1997,0.22760358342665174 -73,1998,0.3079507278835386 -73,1999,0.4319708846584546 -73,2000,0.2494400895856663 -73,2001,0.24020156774916013 -73,2002,0.42609182530795076 -73,2003,0.4137737961926092 -73,2004,0.34546472564389696 -73,2005,0.43812989921612544 -73,2006,0.3314669652855543 -73,2007,0.3614221724524076 -73,2008,0.26175811870100785 -73,2009,0.3362262038073908 -73,2010,0.0971444568868981 -73,2011,0.2791153415453527 -73,2012,0.284434490481523 -73,2013,0.20996640537513997 -73,2014,0.16097424412094066 -73,2015,0.31550951847704367 -73,2016,0.3202687569988802 -73,2017,0.05767077267637178 -73,2018,0.416013437849944 -73,2019,0.3561030235162374 -73,2020,0.31382978723404253 -73,2021,0.3003919372900336 +73,1990,1 +73,1991,0.7789583092735886 +73,1992,0.5081418177618665 +73,1993,0.25464834276475357 +73,1994,0.3256727104746508 +73,1995,0.3464603302921817 +73,1996,0.2890056588520616 +73,1997,0.2347268737729531 +73,1998,0.31758863610116655 +73,1999,0.44549024136736365 +73,2000,0.2572467952419449 +73,2001,0.24771913615890992 +73,2002,0.43942718558725047 +73,2003,0.4267236401432038 +73,2004,0.3562767063171268 +73,2005,0.45184201408938696 +73,2006,0.3418408592216193 +73,2007,0.3727335720060055 +73,2008,0.26995034068599155 +73,2009,0.34674904723409183 +73,2010,0.10018477884282254 +73,2011,0.28785079108442096 +73,2012,0.29333641298071383 +73,2013,0.21653770643261355 +73,2014,0.16601224159833705 +73,2015,0.3253839935327406 +73,2016,0.3302921815452132 +73,2017,0.059475690033491194 +73,2018,0.429033375678485 +73,2019,0.3672479501097126 +73,2020,0.32365169188127973 +73,2021,0.30979327866959244 74,1950,0 74,1951,0 74,1952,0 @@ -5191,33 +5191,33 @@ rgn_id,year,pressure_score 76,1955,0 76,1956,0 76,1957,0 -76,1958,0 -76,1959,0 -76,1960,0 -76,1961,0 -76,1962,0 -76,1963,0 -76,1964,0 -76,1965,0 -76,1966,0 -76,1967,0 -76,1968,0 -76,1969,0 -76,1970,0 -76,1971,0 -76,1972,0 -76,1973,0 -76,1974,0 -76,1975,0 -76,1976,0 -76,1977,0 -76,1978,0 -76,1979,0 -76,1980,0 -76,1981,0 -76,1982,0 +76,1958,2.8871694191015142e-5 +76,1959,2.8871694191015142e-5 +76,1960,2.8871694191015142e-5 +76,1961,2.8871694191015142e-5 +76,1962,0.02887169419101514 +76,1963,2.8871694191015142e-5 +76,1964,0.02887169419101514 +76,1965,0.02887169419101514 +76,1966,2.8871694191015142e-5 +76,1967,2.8871694191015142e-5 +76,1968,0.08661508257304543 +76,1969,0.02887169419101514 +76,1970,2.8871694191015142e-5 +76,1971,2.8871694191015142e-5 +76,1972,2.8871694191015142e-5 +76,1973,2.8871694191015142e-5 +76,1974,0.002887169419101514 +76,1975,0.002887169419101514 +76,1976,0.001443584709550757 +76,1977,0.0017323016514609085 +76,1978,0.00808407437348424 +76,1979,2.8871694191015142e-5 +76,1980,0.0011548677676406056 +76,1981,0.012703545444046662 +76,1982,2.8871694191015142e-5 76,1983,0 -76,1984,0 +76,1984,0.050236747892366346 76,1985,0 76,1986,0 76,1987,0 @@ -5235,7 +5235,7 @@ rgn_id,year,pressure_score 76,1999,0 76,2000,0 76,2001,0 -76,2002,0 +76,2002,0.02887169419101514 76,2003,0 76,2004,0 76,2005,0 @@ -5792,7 +5792,7 @@ rgn_id,year,pressure_score 85,1980,0 85,1981,0 85,1982,0 -85,1983,0 +85,1983,1.2584175550255666e-4 85,1984,0 85,1985,0 85,1986,0 @@ -5864,7 +5864,7 @@ rgn_id,year,pressure_score 86,1980,0 86,1981,0 86,1982,0 -86,1983,0 +86,1983,1.2584175550255666e-4 86,1984,0 86,1985,0 86,1986,0 @@ -5936,7 +5936,7 @@ rgn_id,year,pressure_score 88,1980,0 88,1981,0 88,1982,0 -88,1983,0 +88,1983,1.2584175550255666e-4 88,1984,0 88,1985,0 88,1986,0 @@ -6416,14 +6416,14 @@ rgn_id,year,pressure_score 95,1956,0 95,1957,0 95,1958,0 -95,1959,0.7071668533034714 -95,1960,0.6531354983202687 -95,1961,0.6486562150055991 -95,1962,0.33426651735722285 +95,1959,0.7292989952650425 +95,1960,0.6735766254763832 +95,1961,0.6689571544058208 +95,1962,0.3447280286407208 95,1963,0 -95,1964,0.5750279955207167 -95,1965,0.3219484882418813 -95,1966,0.06690929451287794 +95,1964,0.593024598683451 +95,1965,0.3320244831966741 +95,1966,0.06900334911652618 95,1967,0 95,1968,0 95,1969,0 @@ -6501,11 +6501,11 @@ rgn_id,year,pressure_score 96,1969,0 96,1970,0 96,1971,0 -96,1972,0.02127659574468085 -96,1973,0.13745800671892497 -96,1974,0.12625979843225085 -96,1975,0.07726763717805152 -96,1976,0.006438969764837626 +96,1972,0.02194248758517151 +96,1973,0.14176001847788433 +96,1974,0.13021134080147828 +96,1975,0.0796858759672018 +96,1976,0.006640489663933482 96,1977,0 96,1978,0 96,1979,0 @@ -6589,12 +6589,12 @@ rgn_id,year,pressure_score 97,1985,0 97,1986,0 97,1987,0 -97,1988,0.005879059350503919 +97,1988,0.006063055780113179 97,1989,0 97,1990,0 -97,1991,2.799552071668533e-4 -97,1992,8.398656215005599e-4 -97,1993,0.0011198208286674132 +97,1991,2.887169419101514e-4 +97,1992,8.661508257304543e-4 +97,1993,0.0011548677676406056 97,1994,0 97,1995,0 97,1996,0 @@ -6618,7 +6618,7 @@ rgn_id,year,pressure_score 97,2014,0 97,2015,0 97,2016,0 -97,2017,5.599104143337066e-4 +97,2017,5.774338838203028e-4 97,2018,0 97,2019,0 97,2020,0 @@ -6744,15 +6744,15 @@ rgn_id,year,pressure_score 99,1996,0 99,1997,0 99,1998,0 -99,1999,0.008118701007838746 -99,2000,0.005599104143337066 -99,2001,0.0013997760358342665 -99,2002,2.799552071668533e-4 -99,2003,5.599104143337066e-4 -99,2004,2.799552071668533e-4 -99,2005,2.799552071668533e-4 -99,2006,2.799552071668533e-4 -99,2007,2.799552071668533e-4 +99,1999,0.00837279131539439 +99,2000,0.005774338838203028 +99,2001,0.001443584709550757 +99,2002,2.887169419101514e-4 +99,2003,5.774338838203028e-4 +99,2004,2.887169419101514e-4 +99,2005,2.887169419101514e-4 +99,2006,2.887169419101514e-4 +99,2007,2.887169419101514e-4 99,2008,0 99,2009,0 99,2010,0 @@ -6915,28 +6915,28 @@ rgn_id,year,pressure_score 102,1951,1 102,1952,1 102,1953,1 -102,1954,0.9095744680851063 -102,1955,0.841545352743561 -102,1956,0.9554871220604704 +102,1954,0.9380413442660819 +102,1955,0.8678831273819151 +102,1956,0.9853909227393468 102,1957,1 -102,1958,0.8471444568868981 -102,1959,0.9605263157894737 -102,1960,0.9862821948488242 -102,1961,0.9384098544232923 +102,1958,0.8736574662201182 +102,1959,0.9905878276937294 +102,1960,1 +102,1961,0.9677791892828275 102,1962,1 102,1963,1 102,1964,1 102,1965,1 102,1966,1 -102,1967,0.7553191489361702 -102,1968,0.39137737961926095 -102,1969,0.6131019036954087 -102,1970,0.5741881298992161 -102,1971,0.05711086226203808 -102,1972,0.0425531914893617 -102,1973,0.05067189249720045 -102,1974,5.599104143337066e-4 -102,1975,0.0011198208286674132 +102,1967,0.7789583092735886 +102,1968,0.40362628479039164 +102,1969,0.6322901027832316 +102,1970,0.5921584478577205 +102,1971,0.05889825614967089 +102,1972,0.04388497517034302 +102,1973,0.052257766485737406 +102,1974,5.774338838203028e-4 +102,1975,0.0011548677676406056 102,1976,0 102,1977,0 102,1978,0 @@ -6944,7 +6944,7 @@ rgn_id,year,pressure_score 102,1980,0 102,1981,0 102,1982,0 -102,1983,0.027995520716685332 +102,1983,0.02887169419101514 102,1984,0 102,1985,0 102,1986,0 @@ -6954,19 +6954,19 @@ rgn_id,year,pressure_score 102,1990,0 102,1991,0 102,1992,0 -102,1993,0.024356103023516238 -102,1994,0.04619260918253079 -102,1995,0.026595744680851064 -102,1996,0.027995520716685332 -102,1997,0.04227323628219485 -102,1998,0.012877939529675251 -102,1999,0.0167973124300112 +102,1993,0.025118373946183173 +102,1994,0.04763829541517498 +102,1995,0.027428109481464385 +102,1996,0.02887169419101514 +102,1997,0.04359625822843286 +102,1998,0.013280979327866965 +102,1999,0.017323016514609085 102,2000,0 -102,2001,0.010358342665173572 -102,2002,0.021836506159014557 -102,2003,0.01959686450167973 -102,2004,0.021836506159014557 -102,2005,0.021556550951847706 +102,2001,0.010682526850675602 +102,2002,0.02251992146899181 +102,2003,0.020210185933710597 +102,2004,0.02251992146899181 +102,2005,0.022231204527081657 102,2006,0 102,2007,0 102,2008,0 @@ -6980,7 +6980,7 @@ rgn_id,year,pressure_score 102,2016,0 102,2017,0 102,2018,0 -102,2019,0.007278835386338186 +102,2019,0.007506640489663936 102,2020,0 102,2021,0 103,1950,0 @@ -7068,53 +7068,53 @@ rgn_id,year,pressure_score 104,1960,0 104,1961,0 104,1962,0 -104,1963,2.7995520716685332e-5 -104,1964,2.7995520716685332e-5 -104,1965,2.7995520716685332e-5 -104,1966,0.027995520716685332 -104,1967,0.027995520716685332 -104,1968,0.027995520716685332 -104,1969,0.027995520716685332 -104,1970,0.027995520716685332 -104,1971,0.027995520716685332 -104,1972,0.027995520716685332 -104,1973,0.027995520716685332 -104,1974,0.027995520716685332 -104,1975,0.027995520716685332 -104,1976,0.027995520716685332 -104,1977,0.027995520716685332 -104,1978,0.027995520716685332 -104,1979,0.027995520716685332 -104,1980,0.027995520716685332 -104,1981,0.027995520716685332 -104,1982,0.022396416573348264 -104,1983,0.025195968645016796 -104,1984,0.041993281075028 -104,1985,0.041993281075028 -104,1986,0.041993281075028 -104,1987,0.041993281075028 -104,1988,0.041993281075028 -104,1989,0.041993281075028 -104,1990,0.03919372900335946 -104,1991,0.036394176931690926 -104,1992,0.027995520716685332 -104,1993,0.013997760358342666 -104,1994,0.005599104143337066 -104,1995,0.002799552071668533 -104,1996,0.0013997760358342665 -104,1997,0.0013997760358342665 -104,1998,0.0025195968645016797 -104,1999,0.002799552071668533 -104,2000,2.799552071668533e-4 -104,2001,2.799552071668533e-4 -104,2002,2.799552071668533e-4 -104,2003,2.799552071668533e-4 -104,2004,5.599104143337066e-4 -104,2005,5.599104143337066e-4 -104,2006,5.599104143337066e-4 -104,2007,8.398656215005599e-4 -104,2008,0.0013997760358342665 -104,2009,5.599104143337066e-4 +104,1963,2.8871694191015142e-5 +104,1964,2.8871694191015142e-5 +104,1965,2.8871694191015142e-5 +104,1966,0.02887169419101514 +104,1967,0.02887169419101514 +104,1968,0.02887169419101514 +104,1969,0.02887169419101514 +104,1970,0.02887169419101514 +104,1971,0.02887169419101514 +104,1972,0.02887169419101514 +104,1973,0.02887169419101514 +104,1974,0.02887169419101514 +104,1975,0.02887169419101514 +104,1976,0.02887169419101514 +104,1977,0.02887169419101514 +104,1978,0.02887169419101514 +104,1979,0.02887169419101514 +104,1980,0.02887169419101514 +104,1981,0.02887169419101514 +104,1982,0.023097355352812113 +104,1983,0.025984524771913625 +104,1984,0.04330754128652271 +104,1985,0.04330754128652271 +104,1986,0.04330754128652271 +104,1987,0.04330754128652271 +104,1988,0.04330754128652271 +104,1989,0.04330754128652271 +104,1990,0.040420371867421194 +104,1991,0.03753320244831968 +104,1992,0.02887169419101514 +104,1993,0.01443584709550757 +104,1994,0.005774338838203028 +104,1995,0.002887169419101514 +104,1996,0.001443584709550757 +104,1997,0.001443584709550757 +104,1998,0.0025984524771913626 +104,1999,0.002887169419101514 +104,2000,2.887169419101514e-4 +104,2001,2.887169419101514e-4 +104,2002,2.887169419101514e-4 +104,2003,2.887169419101514e-4 +104,2004,5.774338838203028e-4 +104,2005,5.774338838203028e-4 +104,2006,5.774338838203028e-4 +104,2007,8.661508257304543e-4 +104,2008,0.001443584709550757 +104,2009,5.774338838203028e-4 104,2010,0 104,2011,0 104,2012,0 @@ -7435,47 +7435,47 @@ rgn_id,year,pressure_score 110,1967,0 110,1968,0 110,1969,0 -110,1970,0.17611982082866742 -110,1971,0.1685610302351624 -110,1972,0.020184770436730122 -110,1973,2.7995520716685332e-5 -110,1974,0.010638297872340425 -110,1975,0.008118701007838746 -110,1976,0.0083986562150056 -110,1977,0.009238521836506159 -110,1978,0.012877939529675251 -110,1979,0.007278835386338186 -110,1980,0.008118701007838746 -110,1981,0.007278835386338186 -110,1982,0.008118701007838746 -110,1983,0.007838745800671893 -110,1984,0.013157894736842105 -110,1985,0.014557670772676373 -110,1986,0.006159014557670772 -110,1987,0.0041993281075028 -110,1988,0.003919372900335946 -110,1989,0.002799552071668533 -110,1990,0.0033594624860022394 -110,1991,0.0022396416573348264 -110,1992,0.0016797312430011197 -110,1993,0.0011198208286674132 -110,1994,5.599104143337066e-4 -110,1995,5.599104143337066e-4 -110,1996,8.398656215005599e-4 -110,1997,8.398656215005599e-4 -110,1998,8.398656215005599e-4 -110,1999,2.799552071668533e-4 -110,2000,5.599104143337066e-4 -110,2001,0.0011198208286674132 -110,2002,5.599104143337066e-4 -110,2003,2.799552071668533e-4 -110,2004,0.0011198208286674132 -110,2005,5.599104143337066e-4 -110,2006,0.0011198208286674132 -110,2007,2.799552071668533e-4 -110,2008,2.799552071668533e-4 -110,2009,2.7995520716685332e-5 -110,2010,2.7995520716685332e-5 +110,1970,0.18163182815567624 +110,1971,0.17383647072410216 +110,1972,0.020816491511721914 +110,1973,2.8871694191015142e-5 +110,1974,0.010971243792585754 +110,1975,0.00837279131539439 +110,1976,0.008661508257304542 +110,1977,0.009527659083034996 +110,1978,0.013280979327866965 +110,1979,0.007506640489663936 +110,1980,0.00837279131539439 +110,1981,0.007506640489663936 +110,1982,0.00837279131539439 +110,1983,0.00808407437348424 +110,1984,0.013569696269777116 +110,1985,0.015013280979327873 +110,1986,0.006351772722023331 +110,1987,0.004330754128652271 +110,1988,0.00404203718674212 +110,1989,0.002887169419101514 +110,1990,0.003464603302921817 +110,1991,0.002309735535281211 +110,1992,0.0017323016514609085 +110,1993,0.0011548677676406056 +110,1994,5.774338838203028e-4 +110,1995,5.774338838203028e-4 +110,1996,8.661508257304543e-4 +110,1997,8.661508257304543e-4 +110,1998,8.661508257304543e-4 +110,1999,2.887169419101514e-4 +110,2000,5.774338838203028e-4 +110,2001,0.0011548677676406056 +110,2002,5.774338838203028e-4 +110,2003,2.887169419101514e-4 +110,2004,0.0011548677676406056 +110,2005,5.774338838203028e-4 +110,2006,0.0011548677676406056 +110,2007,2.887169419101514e-4 +110,2008,2.887169419101514e-4 +110,2009,2.8871694191015142e-5 +110,2010,2.8871694191015142e-5 110,2011,0 110,2012,0 110,2013,0 @@ -7565,58 +7565,58 @@ rgn_id,year,pressure_score 112,1953,0 112,1954,0 112,1955,0 -112,1956,2.7995520716685332e-5 -112,1957,2.7995520716685332e-5 -112,1958,2.7995520716685332e-5 -112,1959,5.5991041433370664e-5 -112,1960,5.5991041433370664e-5 -112,1961,5.5991041433370664e-5 -112,1962,0.028023516237402013 -112,1963,0.055991041433370664 -112,1964,0.0280515117581187 -112,1965,0.0280515117581187 -112,1966,0.0280515117581187 -112,1967,0.08404255319148936 -112,1968,0.3359742441209406 -112,1969,0.3079787234042553 -112,1970,0.2799552071668533 -112,1971,0.2799552071668533 -112,1972,0.335946248600224 -112,1973,0.335946248600224 -112,1974,0.335946248600224 -112,1975,0.3639417693169093 -112,1976,0.22396416573348266 -112,1977,0.22396416573348266 -112,1978,0.22396416573348266 -112,1979,0.1959686450167973 -112,1980,0.24636058230683092 -112,1981,0.2558790593505039 -112,1982,0.25811870100783874 -112,1983,0.25867861142217247 -112,1984,0.229003359462486 -112,1985,0.3323068309070549 -112,1986,0.27491601343784994 -112,1987,0.2337625979843225 -112,1988,0.19680851063829788 -112,1989,0.19344904815229563 -112,1990,0.21304591265397538 -112,1991,0.1349384098544233 -112,1992,0.14753639417693168 -112,1993,0.08258678611422172 -112,1994,0.052071668533034715 -112,1995,0.025195968645016796 -112,1996,0.018756998880179173 -112,1997,0.012346024636058231 -112,1998,0.011478163493840985 -112,1999,0.006998880179171333 -112,2000,0.010358342665173572 -112,2001,0.006438969764837626 -112,2002,0.008678611422172453 -112,2003,0.006718924972004479 -112,2004,0.003919372900335946 -112,2005,0.005599104143337066 -112,2006,0.003919372900335946 -112,2007,0.0013997760358342665 +112,1956,2.8871694191015142e-5 +112,1957,2.8871694191015142e-5 +112,1958,2.8871694191015142e-5 +112,1959,5.7743388382030285e-5 +112,1960,5.7743388382030285e-5 +112,1961,5.7743388382030285e-5 +112,1962,0.028900565885206154 +112,1963,0.05774338838203028 +112,1964,0.02892943757939717 +112,1965,0.02892943757939717 +112,1966,0.02892943757939717 +112,1967,0.08667282596142745 +112,1968,0.3464892019863727 +112,1969,0.3176175077953575 +112,1970,0.2887169419101514 +112,1971,0.2887169419101514 +112,1972,0.3464603302921817 +112,1973,0.3464603302921817 +112,1974,0.3464603302921817 +112,1975,0.37533202448319686 +112,1976,0.23097355352812113 +112,1977,0.23097355352812113 +112,1978,0.23097355352812113 +112,1979,0.20210185933710598 +112,1980,0.25407090888093325 +112,1981,0.26388728490587837 +112,1982,0.2661970204411596 +112,1983,0.2667744543249799 +112,1984,0.23617045848250384 +112,1985,0.3427070100473497 +112,1986,0.28352003695576866 +112,1987,0.24107864649497643 +112,1988,0.20296801016283644 +112,1989,0.19950340685991463 +112,1990,0.21971359279362523 +112,1991,0.139161566000693 +112,1992,0.1521538283866498 +112,1993,0.08517149786349466 +112,1994,0.05370135119528816 +112,1995,0.025984524771913625 +112,1996,0.019344035107980145 +112,1997,0.012732417138237678 +112,1998,0.011837394618316208 +112,1999,0.007217923547753785 +112,2000,0.010682526850675602 +112,2001,0.006640489663933482 +112,2002,0.008950225199214694 +112,2003,0.006929206605843634 +112,2004,0.00404203718674212 +112,2005,0.005774338838203028 +112,2006,0.00404203718674212 +112,2007,0.001443584709550757 112,2008,0 112,2009,0 112,2010,0 @@ -7790,30 +7790,30 @@ rgn_id,year,pressure_score 115,1962,0 115,1963,0 115,1964,0 -115,1965,2.7995520716685332e-5 -115,1966,2.7995520716685332e-5 -115,1967,0.027995520716685332 -115,1968,2.7995520716685332e-5 -115,1969,2.7995520716685332e-5 -115,1970,5.5991041433370664e-5 -115,1971,5.5991041433370664e-5 -115,1972,5.5991041433370664e-5 +115,1965,2.8871694191015142e-5 +115,1966,2.8871694191015142e-5 +115,1967,0.02887169419101514 +115,1968,2.8871694191015142e-5 +115,1969,2.8871694191015142e-5 +115,1970,5.7743388382030285e-5 +115,1971,5.7743388382030285e-5 +115,1972,5.7743388382030285e-5 115,1973,0 -115,1974,0.0013997760358342665 -115,1975,0.018477043673012318 -115,1976,0.012597984322508398 -115,1977,0.013437849944008958 -115,1978,0.03975363941769317 -115,1979,0.032474804031354984 -115,1980,0.0467525195968645 -115,1981,0.052071668533034715 -115,1982,0.015957446808510637 -115,1983,0.04143337066069429 -115,1984,0.017357222844344905 -115,1985,0.026035834266517358 -115,1986,0.01427771556550952 -115,1987,0.011478163493840985 -115,1988,0.009798432250839866 +115,1974,0.001443584709550757 +115,1975,0.019055318166069993 +115,1976,0.012992262385956813 +115,1977,0.013858413211687268 +115,1978,0.0409978057512415 +115,1979,0.03349116526157756 +115,1980,0.048215729298995286 +115,1981,0.05370135119528816 +115,1982,0.01645686568887863 +115,1983,0.04273010740270241 +115,1984,0.01790045039842939 +115,1985,0.02685067559764408 +115,1986,0.014724564037417722 +115,1987,0.011837394618316208 +115,1988,0.010105092966855298 115,1989,0 115,1990,0 115,1991,0 @@ -7862,40 +7862,40 @@ rgn_id,year,pressure_score 116,1962,0 116,1963,0 116,1964,0 -116,1965,0.027995520716685332 -116,1966,0.027995520716685332 -116,1967,0.027995520716685332 -116,1968,0.027995520716685332 -116,1969,2.7995520716685332e-5 -116,1970,2.7995520716685332e-5 -116,1971,2.7995520716685332e-5 -116,1972,2.7995520716685332e-5 -116,1973,2.7995520716685332e-5 -116,1974,0.001959686450167973 -116,1975,0.003079507278835386 -116,1976,0.003639417693169093 -116,1977,2.7995520716685332e-5 -116,1978,2.7995520716685332e-5 -116,1979,2.7995520716685332e-5 -116,1980,2.7995520716685332e-5 -116,1981,2.7995520716685332e-5 -116,1982,2.7995520716685332e-5 -116,1983,2.7995520716685332e-5 -116,1984,2.7995520716685332e-5 -116,1985,2.7995520716685332e-5 -116,1986,2.7995520716685332e-5 -116,1987,2.7995520716685332e-5 +116,1965,0.02887169419101514 +116,1966,0.02887169419101514 +116,1967,0.02887169419101514 +116,1968,0.02887169419101514 +116,1969,2.8871694191015142e-5 +116,1970,2.8871694191015142e-5 +116,1971,2.8871694191015142e-5 +116,1972,2.8871694191015142e-5 +116,1973,2.8871694191015142e-5 +116,1974,0.00202101859337106 +116,1975,0.0031758863610116656 +116,1976,0.003753320244831968 +116,1977,2.8871694191015142e-5 +116,1978,2.8871694191015142e-5 +116,1979,2.8871694191015142e-5 +116,1980,2.8871694191015142e-5 +116,1981,2.8871694191015142e-5 +116,1982,2.8871694191015142e-5 +116,1983,2.8871694191015142e-5 +116,1984,2.8871694191015142e-5 +116,1985,2.8871694191015142e-5 +116,1986,2.8871694191015142e-5 +116,1987,2.8871694191015142e-5 116,1988,0 116,1989,0 116,1990,0 116,1991,0 -116,1992,2.7995520716685332e-5 -116,1993,2.7995520716685332e-5 -116,1994,2.7995520716685332e-5 -116,1995,2.7995520716685332e-5 -116,1996,2.7995520716685332e-5 -116,1997,2.7995520716685332e-5 -116,1998,2.7995520716685332e-5 +116,1992,2.8871694191015142e-5 +116,1993,2.8871694191015142e-5 +116,1994,2.8871694191015142e-5 +116,1995,2.8871694191015142e-5 +116,1996,2.8871694191015142e-5 +116,1997,2.8871694191015142e-5 +116,1998,2.8871694191015142e-5 116,1999,0 116,2000,0 116,2001,0 @@ -8328,7 +8328,7 @@ rgn_id,year,pressure_score 122,1996,0 122,1997,0 122,1998,0 -122,1999,0.04507278835386338 +122,1999,0.046483427647534374 122,2000,0 122,2001,0 122,2002,0 @@ -8506,67 +8506,67 @@ rgn_id,year,pressure_score 125,1958,0 125,1959,0 125,1960,0 -125,1961,2.7995520716685332e-5 -125,1962,2.7995520716685332e-5 -125,1963,2.7995520716685332e-5 -125,1964,2.7995520716685332e-5 -125,1965,2.7995520716685332e-5 -125,1966,2.7995520716685332e-5 -125,1967,2.7995520716685332e-5 -125,1968,2.7995520716685332e-5 -125,1969,2.7995520716685332e-5 -125,1970,2.7995520716685332e-5 -125,1971,2.7995520716685332e-5 -125,1972,2.7995520716685332e-5 -125,1973,2.7995520716685332e-5 -125,1974,2.7995520716685332e-5 -125,1975,2.7995520716685332e-5 -125,1976,2.7995520716685332e-5 -125,1977,2.7995520716685332e-5 -125,1978,8.398656215005599e-4 -125,1979,2.7995520716685332e-5 -125,1980,0.0011198208286674132 -125,1981,8.398656215005599e-4 -125,1982,5.599104143337066e-4 -125,1983,2.799552071668533e-4 -125,1984,8.398656215005599e-4 -125,1985,0.0013997760358342665 -125,1986,0.0011198208286674132 -125,1987,0.0022396416573348264 -125,1988,0.001959686450167973 -125,1989,0.0013997760358342665 -125,1990,0.0011198208286674132 -125,1991,0.0022396416573348264 -125,1992,0.003079507278835386 -125,1993,0.0022396416573348264 -125,1994,0.0011198208286674132 -125,1995,0.001959686450167973 -125,1996,0.0022396416573348264 -125,1997,0.0016797312430011197 -125,1998,0.0016797312430011197 -125,1999,0.0013997760358342665 -125,2000,0.0013997760358342665 -125,2001,0.001959686450167973 -125,2002,0.0022396416573348264 -125,2003,0.0022396416573348264 -125,2004,0.0016797312430011197 -125,2005,0.0016797312430011197 -125,2006,8.398656215005599e-4 -125,2007,8.398656215005599e-4 -125,2008,2.799552071668533e-4 -125,2009,2.7995520716685332e-5 -125,2010,2.7995520716685332e-5 -125,2011,2.799552071668533e-4 -125,2012,8.398656215005599e-4 -125,2013,8.398656215005599e-4 -125,2014,5.599104143337066e-4 -125,2015,5.599104143337066e-4 -125,2016,5.599104143337066e-4 -125,2017,5.599104143337066e-4 -125,2018,5.599104143337066e-4 -125,2019,5.599104143337066e-4 -125,2020,5.599104143337066e-4 -125,2021,5.599104143337066e-4 +125,1961,2.8871694191015142e-5 +125,1962,2.8871694191015142e-5 +125,1963,2.8871694191015142e-5 +125,1964,2.8871694191015142e-5 +125,1965,2.8871694191015142e-5 +125,1966,2.8871694191015142e-5 +125,1967,2.8871694191015142e-5 +125,1968,2.8871694191015142e-5 +125,1969,2.8871694191015142e-5 +125,1970,2.8871694191015142e-5 +125,1971,2.8871694191015142e-5 +125,1972,2.8871694191015142e-5 +125,1973,2.8871694191015142e-5 +125,1974,2.8871694191015142e-5 +125,1975,2.8871694191015142e-5 +125,1976,2.8871694191015142e-5 +125,1977,2.8871694191015142e-5 +125,1978,8.661508257304543e-4 +125,1979,2.8871694191015142e-5 +125,1980,0.0011548677676406056 +125,1981,8.661508257304543e-4 +125,1982,5.774338838203028e-4 +125,1983,2.887169419101514e-4 +125,1984,8.661508257304543e-4 +125,1985,0.001443584709550757 +125,1986,0.0011548677676406056 +125,1987,0.002309735535281211 +125,1988,0.00202101859337106 +125,1989,0.001443584709550757 +125,1990,0.0011548677676406056 +125,1991,0.002309735535281211 +125,1992,0.0031758863610116656 +125,1993,0.002309735535281211 +125,1994,0.0011548677676406056 +125,1995,0.00202101859337106 +125,1996,0.002309735535281211 +125,1997,0.0017323016514609085 +125,1998,0.0017323016514609085 +125,1999,0.001443584709550757 +125,2000,0.001443584709550757 +125,2001,0.00202101859337106 +125,2002,0.002309735535281211 +125,2003,0.002309735535281211 +125,2004,0.0017323016514609085 +125,2005,0.0017323016514609085 +125,2006,8.661508257304543e-4 +125,2007,8.661508257304543e-4 +125,2008,2.887169419101514e-4 +125,2009,2.8871694191015142e-5 +125,2010,2.8871694191015142e-5 +125,2011,2.887169419101514e-4 +125,2012,8.661508257304543e-4 +125,2013,8.661508257304543e-4 +125,2014,5.774338838203028e-4 +125,2015,5.774338838203028e-4 +125,2016,5.774338838203028e-4 +125,2017,5.774338838203028e-4 +125,2018,5.774338838203028e-4 +125,2019,5.774338838203028e-4 +125,2020,5.774338838203028e-4 +125,2021,5.774338838203028e-4 126,1950,0 126,1951,0 126,1952,0 @@ -8662,62 +8662,62 @@ rgn_id,year,pressure_score 127,1970,0 127,1971,0 127,1972,0 -127,1973,0.01791713325867861 -127,1974,0.019876819708846586 -127,1975,0.0377939529675252 -127,1976,0.032754759238521836 -127,1977,0.018197088465845463 +127,1973,0.01847788428224969 +127,1974,0.02049890287562075 +127,1975,0.03897678715787044 +127,1976,0.03377988220348772 +127,1977,0.01876660122415984 127,1978,0 127,1979,0 -127,1980,0.011198208286674132 +127,1980,0.011548677676406056 127,1981,0 127,1982,0 -127,1983,2.799552071668533e-4 +127,1983,2.887169419101514e-4 127,1984,0 127,1985,0 -127,1986,5.599104143337066e-4 -127,1987,5.599104143337066e-4 -127,1988,2.799552071668533e-4 +127,1986,5.774338838203028e-4 +127,1987,5.774338838203028e-4 +127,1988,2.887169419101514e-4 127,1989,0 127,1990,0 127,1991,0 -127,1992,2.799552071668533e-4 -127,1993,5.599104143337066e-4 +127,1992,2.887169419101514e-4 +127,1993,5.774338838203028e-4 127,1994,0 127,1995,0 -127,1996,2.799552071668533e-4 +127,1996,2.887169419101514e-4 127,1997,0 -127,1998,5.599104143337066e-4 -127,1999,5.599104143337066e-4 -127,2000,8.398656215005599e-4 -127,2001,5.599104143337066e-4 -127,2002,5.599104143337066e-4 -127,2003,2.799552071668533e-4 +127,1998,5.774338838203028e-4 +127,1999,5.774338838203028e-4 +127,2000,8.661508257304543e-4 +127,2001,5.774338838203028e-4 +127,2002,5.774338838203028e-4 +127,2003,2.887169419101514e-4 127,2004,0 -127,2005,5.599104143337066e-4 -127,2006,2.799552071668533e-4 -127,2007,2.799552071668533e-4 +127,2005,5.774338838203028e-4 +127,2006,2.887169419101514e-4 +127,2007,2.887169419101514e-4 127,2008,0 127,2009,0 -127,2010,8.398656215005599e-4 -127,2011,5.599104143337066e-4 -127,2012,8.398656215005599e-4 -127,2013,0.0011198208286674132 -127,2014,5.599104143337066e-4 +127,2010,8.661508257304543e-4 +127,2011,5.774338838203028e-4 +127,2012,8.661508257304543e-4 +127,2013,0.0011548677676406056 +127,2014,5.774338838203028e-4 127,2015,0 127,2016,0 -127,2017,2.799552071668533e-4 +127,2017,2.887169419101514e-4 127,2018,0 -127,2019,8.398656215005599e-4 +127,2019,8.661508257304543e-4 127,2020,0 -127,2021,2.799552071668533e-4 +127,2021,2.887169419101514e-4 129,1950,0 -129,1951,0.41909294512877937 -129,1952,0.39417693169092943 -129,1953,0.6620940649496081 -129,1954,0.6573348264277715 -129,1955,0.7032474804031354 -129,1956,0.7989921612541994 +129,1951,0.43220926203949667 +129,1952,0.4065134542094932 +129,1953,0.6828155676175081 +129,1954,0.6779073796050356 +129,1955,0.7252569580783004 +129,1956,0.8239981522115721 129,1957,0 129,1958,0 129,1959,0 @@ -8741,27 +8741,27 @@ rgn_id,year,pressure_score 129,1977,0 129,1978,0 129,1979,0 -129,1980,2.7995520716685332e-5 -129,1981,2.799552071668533e-4 -129,1982,2.799552071668533e-4 -129,1983,5.599104143337066e-4 -129,1984,0.0013997760358342665 -129,1985,2.799552071668533e-4 -129,1986,2.7995520716685332e-5 -129,1987,2.7995520716685332e-5 -129,1988,2.7995520716685332e-5 -129,1989,2.7995520716685332e-5 -129,1990,2.7995520716685332e-5 -129,1991,2.7995520716685332e-5 -129,1992,2.7995520716685332e-5 -129,1993,2.7995520716685332e-5 -129,1994,2.7995520716685332e-5 -129,1995,2.7995520716685332e-5 -129,1996,2.7995520716685332e-5 -129,1997,2.7995520716685332e-5 -129,1998,2.7995520716685332e-5 -129,1999,2.7995520716685332e-5 -129,2000,2.7995520716685332e-5 +129,1980,2.8871694191015142e-5 +129,1981,2.887169419101514e-4 +129,1982,2.887169419101514e-4 +129,1983,5.774338838203028e-4 +129,1984,0.001443584709550757 +129,1985,2.887169419101514e-4 +129,1986,2.8871694191015142e-5 +129,1987,2.8871694191015142e-5 +129,1988,2.8871694191015142e-5 +129,1989,2.8871694191015142e-5 +129,1990,2.8871694191015142e-5 +129,1991,2.8871694191015142e-5 +129,1992,2.8871694191015142e-5 +129,1993,2.8871694191015142e-5 +129,1994,2.8871694191015142e-5 +129,1995,2.8871694191015142e-5 +129,1996,2.8871694191015142e-5 +129,1997,2.8871694191015142e-5 +129,1998,2.8871694191015142e-5 +129,1999,2.8871694191015142e-5 +129,2000,2.8871694191015142e-5 129,2001,0 129,2002,0 129,2003,0 @@ -8778,7 +8778,7 @@ rgn_id,year,pressure_score 129,2014,0 129,2015,0 129,2016,0 -129,2017,0.0022396416573348264 +129,2017,0.002309735535281211 129,2018,0 129,2019,0 129,2020,0 @@ -8792,48 +8792,48 @@ rgn_id,year,pressure_score 130,1956,0 130,1957,0 130,1958,0 -130,1959,0.055991041433370664 -130,1960,2.7995520716685332e-5 -130,1961,2.7995520716685332e-5 -130,1962,2.7995520716685332e-5 -130,1963,0.027995520716685332 -130,1964,0.055991041433370664 -130,1965,0.083986562150056 -130,1966,0.055991041433370664 -130,1967,0.055991041433370664 -130,1968,2.7995520716685332e-5 -130,1969,0.083986562150056 -130,1970,2.7995520716685332e-5 -130,1971,0.027995520716685332 -130,1972,0.027995520716685332 -130,1973,2.7995520716685332e-5 -130,1974,0.030235162374020158 -130,1975,0.008118701007838746 -130,1976,0.029395296752519597 -130,1977,0.008678611422172453 -130,1978,0.012038073908174692 -130,1979,0.0041993281075028 -130,1980,0.016237402015677492 -130,1981,0.01931690929451288 -130,1982,0.04927211646136618 -130,1983,0.02463605823068309 -130,1984,0.03527435610302351 -130,1985,0.04479283314669653 -130,1986,0.05263157894736842 -130,1987,0.041993281075028 -130,1988,0.027995520716685332 -130,1989,0.013997760358342666 -130,1990,0.002799552071668533 -130,1991,2.7995520716685332e-5 -130,1992,0.012038073908174692 +130,1959,0.05774338838203028 +130,1960,2.8871694191015142e-5 +130,1961,2.8871694191015142e-5 +130,1962,2.8871694191015142e-5 +130,1963,0.02887169419101514 +130,1964,0.05774338838203028 +130,1965,0.08661508257304543 +130,1966,0.05774338838203028 +130,1967,0.05774338838203028 +130,1968,2.8871694191015142e-5 +130,1969,0.08661508257304543 +130,1970,2.8871694191015142e-5 +130,1971,0.02887169419101514 +130,1972,0.02887169419101514 +130,1973,2.8871694191015142e-5 +130,1974,0.031181429726296353 +130,1975,0.00837279131539439 +130,1976,0.030315278900565897 +130,1977,0.008950225199214694 +130,1978,0.01241482850213651 +130,1979,0.004330754128652271 +130,1980,0.01674558263078878 +130,1981,0.01992146899180045 +130,1982,0.05081418177618665 +130,1983,0.025407090888093325 +130,1984,0.03637833468067908 +130,1985,0.046194710705624226 +130,1986,0.054278785079108466 +130,1987,0.04330754128652271 +130,1988,0.02887169419101514 +130,1989,0.01443584709550757 +130,1990,0.002887169419101514 +130,1991,2.8871694191015142e-5 +130,1992,0.01241482850213651 130,1993,0 -130,1994,0.03163493840985442 -130,1995,0.028275475923852184 -130,1996,0.04171332586786114 -130,1997,0.009238521836506159 -130,1998,0.024076147816349383 -130,1999,2.7995520716685332e-5 -130,2000,2.7995520716685332e-5 +130,1994,0.03262501443584711 +130,1995,0.029160411132925293 +130,1996,0.04301882434461256 +130,1997,0.009527659083034996 +130,1998,0.02482965700427302 +130,1999,2.8871694191015142e-5 +130,2000,2.8871694191015142e-5 130,2001,0 130,2002,0 130,2003,0 @@ -8844,7 +8844,7 @@ rgn_id,year,pressure_score 130,2008,0 130,2009,0 130,2010,0 -130,2011,8.398656215005599e-4 +130,2011,8.661508257304543e-4 130,2012,0 130,2013,0 130,2014,0 @@ -8966,7 +8966,7 @@ rgn_id,year,pressure_score 132,1986,0 132,1987,0 132,1988,0 -132,1989,2.799552071668533e-4 +132,1989,2.887169419101514e-4 132,1990,0 132,1991,0 132,1992,0 @@ -8998,7 +8998,7 @@ rgn_id,year,pressure_score 132,2018,0 132,2019,0 132,2020,0 -132,2021,2.799552071668533e-4 +132,2021,2.887169419101514e-4 133,1950,0 133,1951,0 133,1952,0 @@ -9013,12 +9013,12 @@ rgn_id,year,pressure_score 133,1961,0 133,1962,0 133,1963,0 -133,1964,0.027995520716685332 -133,1965,0.027995520716685332 -133,1966,2.7995520716685332e-5 -133,1967,2.7995520716685332e-5 -133,1968,2.7995520716685332e-5 -133,1969,2.7995520716685332e-5 +133,1964,0.02887169419101514 +133,1965,0.02887169419101514 +133,1966,2.8871694191015142e-5 +133,1967,2.8871694191015142e-5 +133,1968,2.8871694191015142e-5 +133,1969,2.8871694191015142e-5 133,1970,0 133,1971,0 133,1972,0 @@ -9027,9 +9027,9 @@ rgn_id,year,pressure_score 133,1975,0 133,1976,0 133,1977,0 -133,1978,0.0013997760358342665 -133,1979,0.0011198208286674132 -133,1980,8.398656215005599e-4 +133,1978,0.001443584709550757 +133,1979,0.0011548677676406056 +133,1980,8.661508257304543e-4 133,1981,0 133,1982,0 133,1983,0 @@ -9047,9 +9047,9 @@ rgn_id,year,pressure_score 133,1995,0 133,1996,0 133,1997,0 -133,1998,8.398656215005599e-4 -133,1999,2.799552071668533e-4 -133,2000,0.005879059350503919 +133,1998,8.661508257304543e-4 +133,1999,2.887169419101514e-4 +133,2000,0.006063055780113179 133,2001,0 133,2002,0 133,2003,0 @@ -9148,73 +9148,73 @@ rgn_id,year,pressure_score 135,1952,0 135,1953,0 135,1954,0 -135,1955,0.11198208286674133 -135,1956,0.11198208286674133 -135,1957,0.1959686450167973 -135,1958,0.13997760358342665 -135,1959,0.13997760358342665 -135,1960,0.3079507278835386 -135,1961,0.3919372900335946 -135,1962,0.41993281075027994 -135,1963,0.2799552071668533 -135,1964,0.5599104143337066 -135,1965,0.6159014557670772 +135,1955,0.11548677676406056 +135,1956,0.11548677676406056 +135,1957,0.20210185933710598 +135,1958,0.1443584709550757 +135,1959,0.1443584709550757 +135,1960,0.31758863610116655 +135,1961,0.40420371867421195 +135,1962,0.4330754128652271 +135,1963,0.2887169419101514 +135,1964,0.5774338838203028 +135,1965,0.6351772722023331 135,1966,1 135,1967,1 135,1968,1 135,1969,1 135,1970,1 -135,1971,0.6439249720044793 -135,1972,2.7995520716685332e-5 +135,1971,0.6640778380875393 +135,1972,2.8871694191015142e-5 135,1973,1 -135,1974,0.7947928331466966 +135,1974,0.8196673980829199 135,1975,1 -135,1976,0.9067749160134378 -135,1977,0.883538633818589 +135,1976,0.9351541748469804 +135,1977,0.9111906686684379 135,1978,1 135,1979,1 -135,1980,0.68505039193729 -135,1981,0.8135498320268757 -135,1982,0.7402015677491601 -135,1983,0.3516237402015677 -135,1984,0.2810750279955207 -135,1985,0.4431690929451288 -135,1986,0.2421612541993281 -135,1987,0.2416013437849944 -135,1988,0.3093505039193729 -135,1989,0.18029115341545351 +135,1980,0.7064903568541405 +135,1981,0.8390114331909 +135,1982,0.7633675944104403 +135,1983,0.3626284790391502 +135,1984,0.289871809677792 +135,1985,0.4570389190437697 +135,1986,0.24974015475228098 +135,1987,0.24916272086846067 +135,1988,0.3190322208107173 +135,1989,0.1859337105901375 135,1990,0 135,1991,0 135,1992,0 -135,1993,0.003919372900335946 +135,1993,0.00404203718674212 135,1994,0 135,1995,0 135,1996,0 -135,1997,2.799552071668533e-4 -135,1998,0.0011198208286674132 -135,1999,0.0011198208286674132 -135,2000,0.010078387458006719 -135,2001,0.005039193729003359 -135,2002,8.398656215005599e-4 +135,1997,2.887169419101514e-4 +135,1998,0.0011548677676406056 +135,1999,0.0011548677676406056 +135,2000,0.01039380990876545 +135,2001,0.005196904954382725 +135,2002,8.661508257304543e-4 135,2003,0 135,2004,0 135,2005,0 -135,2006,2.799552071668533e-4 -135,2007,2.799552071668533e-4 -135,2008,0.002799552071668533 +135,2006,2.887169419101514e-4 +135,2007,2.887169419101514e-4 +135,2008,0.002887169419101514 135,2009,0 -135,2010,8.398656215005599e-4 +135,2010,8.661508257304543e-4 135,2011,0 135,2012,0 135,2013,0 135,2014,0 135,2015,0 135,2016,0 -135,2017,5.599104143337066e-4 -135,2018,0.0011198208286674132 -135,2019,2.799552071668533e-4 +135,2017,5.774338838203028e-4 +135,2018,0.0011548677676406056 +135,2019,2.887169419101514e-4 135,2020,0 -135,2021,0.002799552071668533 +135,2021,0.002887169419101514 136,1950,0 136,1951,0 136,1952,0 @@ -9308,22 +9308,22 @@ rgn_id,year,pressure_score 137,1968,0 137,1969,0 137,1970,0 -137,1971,0.083986562150056 -137,1972,0.055991041433370664 -137,1973,0.13997760358342665 -137,1974,0.13997760358342665 -137,1975,0.13997760358342665 -137,1976,0.167973124300112 -137,1977,0.167973124300112 -137,1978,0.2799552071668533 -137,1979,0.46724524076147816 -137,1980,0.10274356103023516 -137,1981,0.12877939529675253 +137,1971,0.08661508257304543 +137,1972,0.05774338838203028 +137,1973,0.1443584709550757 +137,1974,0.1443584709550757 +137,1975,0.1443584709550757 +137,1976,0.17323016514609085 +137,1977,0.17323016514609085 +137,1978,0.2887169419101514 +137,1979,0.4818685760480427 +137,1980,0.10595911768102556 +137,1981,0.13280979327866965 137,1982,0 137,1983,0 -137,1984,0.0016797312430011197 -137,1985,0.03471444568868981 -137,1986,0.20016797312430012 +137,1984,0.0017323016514609085 +137,1985,0.03580090079685878 +137,1986,0.20643261346575825 137,1987,0 137,1988,0 137,1989,0 @@ -9331,14 +9331,14 @@ rgn_id,year,pressure_score 137,1991,0 137,1992,0 137,1993,1 -137,1994,0.0635498320268757 -137,1995,0.004479283314669653 -137,1996,0.002799552071668533 -137,1997,0.002799552071668533 -137,1998,0.002799552071668533 -137,1999,0.002799552071668533 -137,2000,0.002799552071668533 -137,2001,0.002799552071668533 +137,1994,0.06553874581360437 +137,1995,0.004619471070562422 +137,1996,0.002887169419101514 +137,1997,0.002887169419101514 +137,1998,0.002887169419101514 +137,1999,0.002887169419101514 +137,2000,0.002887169419101514 +137,2001,0.002887169419101514 137,2002,0 137,2003,0 137,2004,0 @@ -9358,72 +9358,72 @@ rgn_id,year,pressure_score 137,2018,0 137,2019,0 137,2020,0 -137,2021,1.1758118701007839e-4 +137,2021,1.2126111560226359e-4 138,1950,0 138,1951,1 -138,1952,0.026595744680851064 -138,1953,0.3751399776035834 -138,1954,0.511478163493841 -138,1955,0.5282754759238522 -138,1956,0.5674692049272116 -138,1957,0.6665733482642777 -138,1958,0.7150055991041433 -138,1959,0.9518477043673013 -138,1960,0.9661254199328108 +138,1952,0.027428109481464385 +138,1953,0.3868807021596029 +138,1954,0.5274858528698466 +138,1955,0.5448088693844557 +138,1956,0.5852292412518769 +138,1957,0.6874350386880705 +138,1958,0.7373830696385267 +138,1959,0.9816376024945148 +138,1960,0.9963621665319325 138,1961,1 -138,1962,0.9241321388577828 -138,1963,0.9073348264277715 -138,1964,0.578387458006719 -138,1965,0.3608622620380739 -138,1966,0.3824188129899216 -138,1967,0.18057110862262038 -138,1968,0.6892497200447928 -138,1969,0.6453247480403135 -138,1970,0.5414613661814109 -138,1971,0.4963885778275476 -138,1972,0.5599104143337066 -138,1973,0.5425531914893617 -138,1974,0.5215565509518477 -138,1975,0.4174132138857783 -138,1976,0.5881858902575587 -138,1977,0.3423852183650616 -138,1978,0.38101903695408734 -138,1979,0.3020716685330347 -138,1980,0.20240761478163494 -138,1981,0.12066069428891378 -138,1982,0.09742441209406495 -138,1983,0.04591265397536394 -138,1984,0.14417693169092946 -138,1985,0.22172452407614782 -138,1986,0.1629339305711086 -138,1987,0.2169652855543113 -138,1988,0.1282194848824188 +138,1962,0.9530546252454098 +138,1963,0.9357316087308007 +138,1964,0.5964892019863728 +138,1965,0.3721561381221852 +138,1966,0.39438734264926684 +138,1967,0.18622242753204765 +138,1968,0.7108211109827928 +138,1969,0.66552142279709 +138,1970,0.5584074373484238 +138,1971,0.5119240097008895 +138,1972,0.5774338838203028 +138,1973,0.5595334334218734 +138,1974,0.5378796627786121 +138,1975,0.43047696038803573 +138,1976,0.6065942949532281 +138,1977,0.3531008199561152 +138,1978,0.3929437579397161 +138,1979,0.3115255803210534 +138,1980,0.20874234900103947 +138,1981,0.12443700196327526 +138,1982,0.10047349578473269 +138,1983,0.04734957847326483 +138,1984,0.14868922508372798 +138,1985,0.2286638179928399 +138,1986,0.1680332601917081 +138,1987,0.22375562998036735 +138,1988,0.13223235939484934 138,1989,1 -138,1990,0.6125419932810751 -138,1991,0.646976483762598 +138,1990,0.6317126688994112 +138,1991,0.6672248527543599 138,1992,1 138,1993,1 -138,1994,0.5271556550951848 -138,1995,0.07166853303471445 -138,1996,0.004227323628219485 -138,1997,0.0025195968645016797 -138,1998,5.599104143337066e-4 -138,1999,0.1360582306830907 -138,2000,0.07166853303471445 -138,2001,0.015957446808510637 -138,2002,0.16993281075027997 -138,2003,0.0016797312430011197 -138,2004,8.398656215005599e-4 -138,2005,0.004479283314669653 -138,2006,0.0041993281075028 -138,2007,8.398656215005599e-4 +138,1994,0.5436540016168151 +138,1995,0.07391153712899876 +138,1996,0.004359625822843286 +138,1997,0.0025984524771913626 +138,1998,5.774338838203028e-4 +138,1999,0.14031643376833358 +138,2000,0.07391153712899876 +138,2001,0.01645686568887863 +138,2002,0.1752511837394619 +138,2003,0.0017323016514609085 +138,2004,8.661508257304543e-4 +138,2005,0.004619471070562422 +138,2006,0.004330754128652271 +138,2007,8.661508257304543e-4 138,2008,0 138,2009,0 138,2010,0 -138,2011,0.006159014557670772 -138,2012,2.799552071668533e-4 -138,2013,2.799552071668533e-4 -138,2014,0.0011198208286674132 +138,2011,0.006351772722023331 +138,2012,2.887169419101514e-4 +138,2013,2.887169419101514e-4 +138,2014,0.0011548677676406056 138,2015,0 138,2016,0 138,2017,0 @@ -9431,55 +9431,55 @@ rgn_id,year,pressure_score 138,2019,0 138,2020,0 138,2021,0 -139,1950,0 -139,1951,0 -139,1952,0 -139,1953,0 -139,1954,0 -139,1955,0 -139,1956,0 -139,1957,0 -139,1958,0 -139,1959,0 -139,1960,0 -139,1961,0 -139,1962,0 -139,1963,0 -139,1964,0 -139,1965,0 -139,1966,0 -139,1967,0 -139,1968,0 -139,1969,0 -139,1970,0 -139,1971,0 -139,1972,0 -139,1973,0 -139,1974,0 -139,1975,0 -139,1976,0 -139,1977,0 -139,1978,0 -139,1979,0 -139,1980,0 -139,1981,0 -139,1982,0 -139,1983,0 -139,1984,0 -139,1985,0 -139,1986,0 -139,1987,0 -139,1988,0 -139,1989,0 -139,1990,0 -139,1991,0 -139,1992,0 -139,1993,0 -139,1994,0 -139,1995,0 -139,1996,0 -139,1997,0 -139,1998,0 +139,1950,2.8871694191015142e-5 +139,1951,2.8871694191015142e-5 +139,1952,2.8871694191015142e-5 +139,1953,0.05774338838203028 +139,1954,0.02887169419101514 +139,1955,0.02887169419101514 +139,1956,2.8871694191015142e-5 +139,1957,2.8871694191015142e-5 +139,1958,0.05774338838203028 +139,1959,0.08661508257304543 +139,1960,2.8871694191015142e-5 +139,1961,2.8871694191015142e-5 +139,1962,2.8871694191015142e-5 +139,1963,2.8871694191015142e-5 +139,1964,2.8871694191015142e-5 +139,1965,2.8871694191015142e-5 +139,1966,2.8871694191015142e-5 +139,1967,0.02887169419101514 +139,1968,0.02887169419101514 +139,1969,1.1548677676406057e-4 +139,1970,1.1548677676406057e-4 +139,1971,8.661508257304543e-5 +139,1972,5.7743388382030285e-5 +139,1973,1.1548677676406057e-4 +139,1974,0.001241482850213651 +139,1975,1.1548677676406057e-4 +139,1976,1.1548677676406057e-4 +139,1977,1.1548677676406057e-4 +139,1978,1.1548677676406057e-4 +139,1979,1.1548677676406057e-4 +139,1980,1.1548677676406057e-4 +139,1981,1.1548677676406057e-4 +139,1982,1.1548677676406057e-4 +139,1983,1.1548677676406057e-4 +139,1984,1.1548677676406057e-4 +139,1985,1.1548677676406057e-4 +139,1986,1.1548677676406057e-4 +139,1987,1.1548677676406057e-4 +139,1988,1.1548677676406057e-4 +139,1989,1.1548677676406057e-4 +139,1990,1.1548677676406057e-4 +139,1991,1.1548677676406057e-4 +139,1992,1.1548677676406057e-4 +139,1993,1.1548677676406057e-4 +139,1994,1.1548677676406057e-4 +139,1995,1.1548677676406057e-4 +139,1996,1.1548677676406057e-4 +139,1997,1.1548677676406057e-4 +139,1998,1.1548677676406057e-4 139,1999,0 139,2000,0 139,2001,0 @@ -9523,35 +9523,35 @@ rgn_id,year,pressure_score 140,1967,0 140,1968,0 140,1969,0 -140,1970,2.7995520716685332e-5 -140,1971,5.5991041433370664e-5 -140,1972,5.5991041433370664e-5 -140,1973,5.5991041433370664e-5 -140,1974,0.005907054871220605 -140,1975,0.009546472564389698 -140,1976,0.003947368421052632 -140,1977,0.012318029115341545 -140,1978,0.008678611422172453 -140,1979,0.015677491601343786 -140,1980,0.01931690929451288 -140,1981,0.018477043673012318 -140,1982,0.020716685330347144 -140,1983,0.01959686450167973 -140,1984,0.019876819708846586 -140,1985,0.018197088465845463 -140,1986,0.016517357222844344 -140,1987,0.013997760358342666 -140,1988,0.005879059350503919 -140,1989,0.005879059350503919 -140,1990,0.005879059350503919 -140,1991,0.006159014557670772 -140,1992,0.0033594624860022394 -140,1993,0.0028275475923852183 -140,1994,0.0014277715565509518 -140,1995,5.5991041433370664e-5 -140,1996,5.5991041433370664e-5 -140,1997,5.5991041433370664e-5 -140,1998,5.5991041433370664e-5 +140,1970,2.8871694191015142e-5 +140,1971,5.7743388382030285e-5 +140,1972,5.7743388382030285e-5 +140,1973,5.7743388382030285e-5 +140,1974,0.006091927474304195 +140,1975,0.009845247719136163 +140,1976,0.004070908880933134 +140,1977,0.012703545444046662 +140,1978,0.008950225199214694 +140,1979,0.01616814874696848 +140,1980,0.01992146899180045 +140,1981,0.019055318166069993 +140,1982,0.021365053701351205 +140,1983,0.020210185933710597 +140,1984,0.02049890287562075 +140,1985,0.01876660122415984 +140,1986,0.017034299572698933 +140,1987,0.01443584709550757 +140,1988,0.006063055780113179 +140,1989,0.006063055780113179 +140,1990,0.006063055780113179 +140,1991,0.006351772722023331 +140,1992,0.003464603302921817 +140,1993,0.0029160411132925293 +140,1994,0.001472456403741772 +140,1995,5.7743388382030285e-5 +140,1996,5.7743388382030285e-5 +140,1997,5.7743388382030285e-5 +140,1998,5.7743388382030285e-5 140,1999,0 140,2000,0 140,2001,0 @@ -9575,150 +9575,150 @@ rgn_id,year,pressure_score 140,2019,0 140,2020,0 140,2021,0 -141,1950,0.12094064949608063 -141,1951,0.10106382978723404 -141,1952,0.006438969764837626 -141,1953,0.04731243001119821 -141,1954,0.008678611422172453 -141,1955,0.04507278835386338 -141,1956,0.040873460246360585 -141,1957,0.055711086226203806 -141,1958,0.015957446808510637 -141,1959,0.3980963045912654 -141,1960,0.4764837625979843 -141,1961,0.5372340425531915 -141,1962,0.4969204927211646 -141,1963,0.6181410974244121 -141,1964,0.39417693169092943 -141,1965,0.501959686450168 -141,1966,0.4227323628219485 -141,1967,0.5601903695408734 -141,1968,0.5044792833146696 -141,1969,0.3905375139977604 -141,1970,0.12541993281075028 -141,1971,0.3124300111982083 -141,1972,0.14305711086226203 -141,1973,0.29423292273236284 -141,1974,0.18952967525195968 -141,1975,0.3023516237402016 -141,1976,0.16097424412094066 -141,1977,0.25139977603583424 -141,1978,0.35582306830907057 -141,1979,0.48292273236282196 -141,1980,0.7763157894736842 -141,1981,0.8323068309070548 -141,1982,0.7424412094064949 -141,1983,0.4784434490481523 -141,1984,0.5377939529675252 -141,1985,0.7222844344904815 -141,1986,0.5377939529675252 -141,1987,0.41993281075027994 -141,1988,0.6492161254199328 -141,1989,0.35442329227323627 -141,1990,0.2732362821948488 -141,1991,0.21892497200447927 -141,1992,0.45296752519596867 +141,1950,0.12472571890518541 +141,1951,0.10422681602956466 +141,1952,0.006640489663933482 +141,1953,0.04879316318281559 +141,1954,0.008950225199214694 +141,1955,0.046483427647534374 +141,1956,0.042152673518882106 +141,1957,0.057454671440120134 +141,1958,0.01645686568887863 +141,1959,0.4105554913962353 +141,1960,0.4913962351310777 +141,1961,0.5540478115255806 +141,1962,0.5124725718905188 +141,1963,0.6374870077376144 +141,1964,0.4065134542094932 +141,1965,0.5176694768449015 +141,1966,0.4359625822843286 +141,1967,0.5777226007622129 +141,1968,0.5202679293220929 +141,1969,0.4027601339646612 +141,1970,0.12934518997574784 +141,1971,0.322208107171729 +141,1972,0.14753435731608738 +141,1973,0.30344150594756913 +141,1974,0.1954613696731725 +141,1975,0.3118142972629635 +141,1976,0.16601224159833705 +141,1977,0.25926781383531594 +141,1978,0.36695923316780243 +141,1979,0.49803672479501115 +141,1980,0.8006120799168499 +141,1981,0.8583554682988801 +141,1982,0.7656773299457216 +141,1983,0.4934172537244488 +141,1984,0.5546252454094008 +141,1985,0.7448897101281906 +141,1986,0.5546252454094008 +141,1987,0.4330754128652271 +141,1988,0.6695345882896411 +141,1989,0.3655156484582517 +141,1990,0.2817877353043078 +141,1991,0.22577664857373841 +141,1992,0.467144012010625 141,1993,0 -141,1994,0.4106942889137738 -141,1995,0.1061030235162374 -141,1996,0.47592385218365063 -141,1997,0.4232922732362822 -141,1998,0.3507838745800672 -141,1999,0.1702127659574468 -141,2000,0.23600223964165734 -141,2001,0.41209406494960804 -141,2002,0.3986562150055991 -141,2003,0.1937290033594625 -141,2004,0.375979843225084 -141,2005,0.17161254199328108 +141,1994,0.4235477537821921 +141,1995,0.10942372098394738 +141,1996,0.4908188012472574 +141,1997,0.4365400161681489 +141,1998,0.3617623282134197 +141,1999,0.17553990068137207 +141,2000,0.24338838203025764 +141,2001,0.42499133849174286 +141,2002,0.41113292528005563 +141,2003,0.19979212380182476 +141,2004,0.38774685298533335 +141,2005,0.17698348539092282 141,2006,0 141,2007,0 -141,2008,0.0022396416573348264 -141,2009,0.027715565509518477 -141,2010,0.31970884658454646 -141,2011,0.2032474804031355 -141,2012,0.20044792833146696 -141,2013,0.4311310190369541 -141,2014,0.01427771556550952 -141,2015,0.1402575587905935 -141,2016,0.0851063829787234 -141,2017,0.47564389697648374 -141,2018,0.24776035834266516 -141,2019,0.1942889137737962 -141,2020,0.1612541993281075 -141,2021,0.5848264277715566 -143,1950,0.07418812989921612 -143,1951,0.09490481522956327 -143,1952,0.07418812989921612 -143,1953,0.0929451287793953 -143,1954,0.093505039193729 -143,1955,0.11198208286674133 -143,1956,0.12318029115341546 -143,1957,0.14473684210526316 -143,1958,0.1422172452407615 -143,1959,0.10386338185890258 -143,1960,0.1061030235162374 -143,1961,0.09798432250839866 -143,1962,0.13521836506159016 -143,1963,0.1229003359462486 -143,1964,0.12430011198208286 -143,1965,0.12094064949608063 -143,1966,0.12234042553191489 -143,1967,0.11366181410974244 -143,1968,0.07838745800671892 -143,1969,0.11842105263157894 -143,1970,0.1055431131019037 -143,1971,0.15509518477043674 -143,1972,0.13465845464725643 -143,1973,0.16097424412094066 -143,1974,0.12737961926091826 -143,1975,0.16825307950727883 -143,1976,0.16405375139977604 -143,1977,0.1623740201567749 -143,1978,0.16489361702127658 -143,1979,0.17889137737961927 -143,1980,0.1786114221724524 -143,1981,0.16825307950727883 -143,1982,0.17721164613661813 -143,1983,0.12541993281075028 -143,1984,0.12318029115341546 -143,1985,0.09630459126539753 -143,1986,0.032474804031354984 -143,1987,0.027995520716685332 -143,1988,0.021836506159014557 -143,1989,0.01959686450167973 -143,1990,0.0075587905935050395 +141,2008,0.002309735535281211 +141,2009,0.02858297724910499 +141,2010,0.3297147476613929 +141,2011,0.20960849982676993 +141,2012,0.2067213304076684 +141,2013,0.44462409054163315 +141,2014,0.014724564037417722 +141,2015,0.14464718789698586 +141,2016,0.08776995034068603 +141,2017,0.4905300843053472 +141,2018,0.255514493590484 +141,2019,0.20036955768564507 +141,2020,0.1663009585402472 +141,2021,0.6031296916503063 +143,1950,0.07650998960619013 +143,1951,0.09787504330754133 +143,1952,0.07650998960619013 +143,1953,0.09585402471417027 +143,1954,0.09643145859799057 +143,1955,0.11548677676406056 +143,1956,0.12703545444046663 +143,1957,0.1492666589675483 +143,1958,0.14666820649035692 +143,1959,0.10711398544866617 +143,1960,0.10942372098394738 +143,1961,0.10105092966855299 +143,1962,0.13945028294260314 +143,1963,0.12674673749855647 +143,1964,0.12819032220810722 +143,1965,0.12472571890518541 +143,1966,0.12616930361473616 +143,1967,0.11721907841552147 +143,1968,0.08084074373484239 +143,1969,0.12212726642799404 +143,1970,0.10884628710012709 +143,1971,0.15994918581822387 +143,1972,0.13887284905878283 +143,1973,0.16601224159833705 +143,1974,0.1313662085691189 +143,1975,0.173518882088001 +143,1976,0.16918812795934873 +143,1977,0.16745582630788783 +143,1978,0.17005427878507917 +143,1979,0.18449012588058675 +143,1980,0.1842014089386766 +143,1981,0.173518882088001 +143,1982,0.18275782422912584 +143,1983,0.12934518997574784 +143,1984,0.12703545444046663 +143,1985,0.09931862801709208 +143,1986,0.03349116526157756 +143,1987,0.02887169419101514 +143,1988,0.02251992146899181 +143,1989,0.020210185933710597 +143,1990,0.007795357431574088 143,1991,0 143,1992,0 -143,1993,5.599104143337066e-4 -143,1994,5.599104143337066e-4 +143,1993,5.774338838203028e-4 +143,1994,5.774338838203028e-4 143,1995,0 -143,1996,5.599104143337066e-4 -143,1997,5.599104143337066e-4 -143,1998,8.398656215005599e-4 +143,1996,5.774338838203028e-4 +143,1997,5.774338838203028e-4 +143,1998,8.661508257304543e-4 143,1999,0 -143,2000,2.799552071668533e-4 +143,2000,2.887169419101514e-4 143,2001,0 -143,2002,0.03863381858902576 -143,2003,0.010918253079507279 -143,2004,0.10946248600223964 -143,2005,0.07306830907054872 -143,2006,0.01931690929451288 -143,2007,0.012597984322508398 -143,2008,0.03527435610302351 -143,2009,0.05767077267637178 -143,2010,0.09434490481522956 -143,2011,0.06858902575587907 -143,2012,0.054871220604703244 -143,2013,0.09322508398656215 -143,2014,0.04507278835386338 -143,2015,0.051511758118701005 -143,2016,0.012877939529675251 -143,2017,0.004759238521836506 -143,2018,0.0425531914893617 +143,2002,0.0398429379836009 +143,2003,0.011259960734495904 +143,2004,0.11288832428686921 +143,2005,0.07535512183854952 +143,2006,0.01992146899180045 +143,2007,0.012992262385956813 +143,2008,0.03637833468067908 +143,2009,0.059475690033491194 +143,2010,0.09729760942372102 +143,2011,0.0707356507679871 +143,2012,0.056588520614389674 +143,2013,0.09614274165608042 +143,2014,0.046483427647534374 +143,2015,0.05312391731146786 +143,2016,0.013280979327866965 +143,2017,0.004908188012472574 +143,2018,0.04388497517034302 143,2019,0 -143,2020,8.398656215005599e-4 -143,2021,2.799552071668533e-4 +143,2020,8.661508257304543e-4 +143,2021,2.887169419101514e-4 144,1950,0 144,1951,0 144,1952,0 @@ -9791,57 +9791,57 @@ rgn_id,year,pressure_score 144,2019,0 144,2020,0 144,2021,0 -145,1950,0.012877939529675251 -145,1951,0.007278835386338186 -145,1952,0.005879059350503919 -145,1953,0.005879059350503919 -145,1954,0.008678611422172453 -145,1955,0.009798432250839866 -145,1956,0.012318029115341545 -145,1957,0.01427771556550952 -145,1958,0.010358342665173572 -145,1959,0.005319148936170213 -145,1960,0.16573348264277715 -145,1961,0.018756998880179173 -145,1962,0.01959686450167973 +145,1950,0.013280979327866965 +145,1951,0.007506640489663936 +145,1952,0.006063055780113179 +145,1953,0.006063055780113179 +145,1954,0.008950225199214694 +145,1955,0.010105092966855298 +145,1956,0.012703545444046662 +145,1957,0.014724564037417722 +145,1958,0.010682526850675602 +145,1959,0.005485621896292877 +145,1960,0.17092042961080964 +145,1961,0.019344035107980145 +145,1962,0.020210185933710597 145,1963,0 -145,1964,0.5184770436730123 -145,1965,0.5713885778275476 -145,1966,0.465565509518477 -145,1967,0.5909854423292273 -145,1968,0.9773236282194849 -145,1969,0.7637178051511758 -145,1970,0.9011758118701008 -145,1971,0.6951287793952967 -145,1972,0.6041433370660694 -145,1973,0.6531354983202687 -145,1974,0.5330347144456887 -145,1975,0.39557670772676373 -145,1976,0.5240761478163494 -145,1977,0.7315229563269877 -145,1978,0.694568868980963 -145,1979,0.7239641657334827 -145,1980,0.8292273236282195 -145,1981,0.8440649496080627 -145,1982,0.7309630459126539 -145,1983,0.6475363941769317 -145,1984,0.7309630459126539 -145,1985,0.5671892497200448 -145,1986,0.5008398656215005 -145,1987,0.5545912653975364 -145,1988,0.2673572228443449 -145,1989,0.333986562150056 -145,1990,0.6480963045912654 -145,1991,0.03583426651735722 -145,1992,0.14473684210526316 -145,1993,0.38045912653975367 -145,1994,0.8894176931690929 -145,1995,0.6634938409854423 +145,1964,0.5347037764176004 +145,1965,0.589271278438619 +145,1966,0.4801362743965818 +145,1967,0.6094814643723296 +145,1968,1 +145,1969,0.787619817530893 +145,1970,0.9293798360087774 +145,1971,0.7168841667629059 +145,1972,0.6230511606421067 +145,1973,0.6735766254763832 +145,1974,0.5497170573969283 +145,1975,0.40795703891904395 +145,1976,0.5404781152558035 +145,1977,0.7544173692112256 +145,1978,0.7163067328790856 +145,1979,0.7466220117796516 +145,1980,0.8551795819378685 +145,1981,0.8704815798591065 +145,1982,0.7538399353274053 +145,1983,0.6678022866381802 +145,1984,0.7538399353274053 +145,1985,0.5849405243099668 +145,1986,0.5165146090772609 +145,1987,0.5719482619240099 +145,1988,0.2757246795241946 +145,1989,0.34443931169881065 +145,1990,0.6683797205220006 +145,1991,0.03695576856449938 +145,1992,0.1492666589675483 +145,1993,0.3923663240558958 +145,1994,0.917253724448551 +145,1995,0.6842591523270588 145,1996,1 145,1997,1 145,1998,1 145,1999,1 -145,2000,0.9272116461366181 +145,2000,0.9562305116064215 145,2001,1 145,2002,1 145,2003,1 @@ -9849,14 +9849,14 @@ rgn_id,year,pressure_score 145,2005,1 145,2006,1 145,2007,1 -145,2008,0.8519036954087346 -145,2009,0.9207726763717805 -145,2010,0.9857222844344905 +145,2008,0.8785656542325907 +145,2009,0.949590021942488 +145,2010,1 145,2011,1 145,2012,1 145,2013,1 145,2014,1 -145,2015,0.8787793952967525 +145,2015,0.9062824806559653 145,2016,1 145,2017,1 145,2018,1 @@ -10534,12 +10534,12 @@ rgn_id,year,pressure_score 155,1970,0 155,1971,0 155,1972,0 -155,1973,8.398656215005599e-4 -155,1974,0.0011198208286674132 +155,1973,8.661508257304543e-4 +155,1974,0.0011548677676406056 155,1975,0 -155,1976,0.0011198208286674132 -155,1977,0.0011198208286674132 -155,1978,0.003079507278835386 +155,1976,0.0011548677676406056 +155,1977,0.0011548677676406056 +155,1978,0.0031758863610116656 155,1979,0 155,1980,0 155,1981,0 @@ -10915,19 +10915,19 @@ rgn_id,year,pressure_score 161,1991,0 161,1992,0 161,1993,0 -161,1994,5.599104143337066e-4 -161,1995,5.599104143337066e-4 -161,1996,5.599104143337066e-4 -161,1997,5.599104143337066e-4 -161,1998,5.599104143337066e-4 -161,1999,5.599104143337066e-4 -161,2000,5.599104143337066e-4 -161,2001,2.799552071668533e-4 -161,2002,2.799552071668533e-4 -161,2003,2.799552071668533e-4 -161,2004,2.799552071668533e-4 -161,2005,2.799552071668533e-4 -161,2006,2.799552071668533e-4 +161,1994,5.774338838203028e-4 +161,1995,5.774338838203028e-4 +161,1996,5.774338838203028e-4 +161,1997,5.774338838203028e-4 +161,1998,5.774338838203028e-4 +161,1999,5.774338838203028e-4 +161,2000,5.774338838203028e-4 +161,2001,2.887169419101514e-4 +161,2002,2.887169419101514e-4 +161,2003,2.887169419101514e-4 +161,2004,2.887169419101514e-4 +161,2005,2.887169419101514e-4 +161,2006,2.887169419101514e-4 161,2007,0 161,2008,0 161,2009,0 @@ -10943,21 +10943,21 @@ rgn_id,year,pressure_score 161,2019,0 161,2020,0 161,2021,0 -162,1950,0.022116461366181412 -162,1951,0.031075027995520716 -162,1952,0.0341545352743561 -162,1953,0.03051511758118701 -162,1954,0.05039193729003359 -162,1955,0.03135498320268757 -162,1956,0.044512877939529676 -162,1957,0.052071668533034715 -162,1958,0.051231802911534154 -162,1959,0.08958566629339305 -162,1960,0.10106382978723404 -162,1961,0.02267637178051512 -162,1962,0.009798432250839866 -162,1963,0.03443449048152296 -162,1964,0.03891377379619261 +162,1950,0.02280863841090196 +162,1951,0.032047580552026805 +162,1952,0.03522346691303847 +162,1953,0.0314701466682065 +162,1954,0.05196904954382725 +162,1955,0.03233629749393696 +162,1956,0.04590599376371408 +162,1957,0.05370135119528816 +162,1958,0.05283520036955771 +162,1959,0.09238942141124845 +162,1960,0.10422681602956466 +162,1961,0.023386072294722265 +162,1962,0.010105092966855298 +162,1963,0.03551218385494862 +162,1964,0.040131654925511046 162,1965,0 162,1966,0 162,1967,0 @@ -10977,116 +10977,116 @@ rgn_id,year,pressure_score 162,1981,0 162,1982,0 162,1983,0 -162,1984,0.0011198208286674132 +162,1984,0.0011548677676406056 162,1985,0 162,1986,0 -162,1987,0.0025195968645016797 -162,1988,0.003639417693169093 -162,1989,0.011198208286674132 -162,1990,8.398656215005599e-4 +162,1987,0.0025984524771913626 +162,1988,0.003753320244831968 +162,1989,0.011548677676406056 +162,1990,8.661508257304543e-4 162,1991,0 -162,1992,0.006438969764837626 -162,1993,0.010638297872340425 -162,1994,0.006159014557670772 -162,1995,0.007838745800671893 -162,1996,8.398656215005599e-4 -162,1997,0.0025195968645016797 -162,1998,0.004479283314669653 -162,1999,0.0025195968645016797 -162,2000,0.003919372900335946 -162,2001,0.005319148936170213 -162,2002,0.003639417693169093 -162,2003,0.009238521836506159 -162,2004,0.008678611422172453 -162,2005,0.0033594624860022394 -162,2006,0.003079507278835386 -162,2007,0.007838745800671893 -162,2008,0.0013997760358342665 -162,2009,0.005879059350503919 -162,2010,0.006159014557670772 -162,2011,0.005319148936170213 -162,2012,0.012038073908174692 -162,2013,0.010358342665173572 -162,2014,0.015957446808510637 -162,2015,0.014557670772676373 -162,2016,0.007838745800671893 -162,2017,0.005039193729003359 -162,2018,0.010078387458006719 -162,2019,0.004479283314669653 -162,2020,0.006159014557670772 -162,2021,0.007838745800671893 -163,1950,0.0016797312430011197 -163,1951,0.08174692049272117 -163,1952,0.013997760358342666 -163,1953,0.002799552071668533 -163,1954,0.0025195968645016797 -163,1955,5.599104143337066e-4 -163,1956,0.41993281075027994 -163,1957,0.07362821948488242 -163,1958,0.15593505039193728 -163,1959,0.15089585666293392 -163,1960,0.13045912653975364 -163,1961,0.12877939529675253 -163,1962,0.07981522956326988 -163,1963,0.07981522956326988 -163,1964,0.08202687569988802 -163,1965,0.07337625979843226 -163,1966,0.06665733482642777 -163,1967,0.0887737961926092 -163,1968,0.0646976483762598 -163,1969,0.05293952967525196 -163,1970,0.07645576707726764 -163,1971,0.07082866741321389 -163,1972,0.09073348264277716 -163,1973,0.010386338185890258 -163,1974,0.010078387458006719 -163,1975,0.004227323628219485 -163,1976,0.01570548712206047 -163,1977,0.008174692049272117 -163,1978,0.005599104143337066 -163,1979,0.047872340425531915 -163,1980,0.013157894736842105 -163,1981,0.059070548712206045 -163,1982,0.1061030235162374 +162,1992,0.006640489663933482 +162,1993,0.010971243792585754 +162,1994,0.006351772722023331 +162,1995,0.00808407437348424 +162,1996,8.661508257304543e-4 +162,1997,0.0025984524771913626 +162,1998,0.004619471070562422 +162,1999,0.0025984524771913626 +162,2000,0.00404203718674212 +162,2001,0.005485621896292877 +162,2002,0.003753320244831968 +162,2003,0.009527659083034996 +162,2004,0.008950225199214694 +162,2005,0.003464603302921817 +162,2006,0.0031758863610116656 +162,2007,0.00808407437348424 +162,2008,0.001443584709550757 +162,2009,0.006063055780113179 +162,2010,0.006351772722023331 +162,2011,0.005485621896292877 +162,2012,0.01241482850213651 +162,2013,0.010682526850675602 +162,2014,0.01645686568887863 +162,2015,0.015013280979327873 +162,2016,0.00808407437348424 +162,2017,0.005196904954382725 +162,2018,0.01039380990876545 +162,2019,0.004619471070562422 +162,2020,0.006351772722023331 +162,2021,0.00808407437348424 +163,1950,0.0017323016514609085 +163,1951,0.08430534703776421 +163,1952,0.01443584709550757 +163,1953,0.002887169419101514 +163,1954,0.0025984524771913626 +163,1955,5.774338838203028e-4 +163,1956,0.4330754128652271 +163,1957,0.07593255572236982 +163,1958,0.16081533664395434 +163,1959,0.1556184316895716 +163,1960,0.13454209493013056 +163,1961,0.13280979327866965 +163,1962,0.08231320013858417 +163,1963,0.08231320013858417 +163,1964,0.08459406397967437 +163,1965,0.07567271047465068 +163,1966,0.06874350386880705 +163,1967,0.09155214227970902 +163,1968,0.06672248527543599 +163,1969,0.05459637371520963 +163,1970,0.07884859683566235 +163,1971,0.0730453863032683 +163,1972,0.09357316087308008 +163,1973,0.010711398544866618 +163,1974,0.01039380990876545 +163,1975,0.004359625822843286 +163,1976,0.016197020441159494 +163,1977,0.00843053470377642 +163,1978,0.005774338838203028 +163,1979,0.04937059706663589 +163,1980,0.013569696269777116 +163,1981,0.06091927474304195 +163,1982,0.10942372098394738 163,1983,1 -163,1984,0.033314669652855546 -163,1985,0.0033594624860022394 -163,1986,0.0509518477043673 +163,1984,0.03435731608730802 +163,1985,0.003464603302921817 +163,1986,0.052546483427647554 163,1987,1 163,1988,1 163,1989,1 163,1990,1 163,1991,1 -163,1992,0.6934490481522956 -163,1993,0.8603023516237402 -163,1994,0.9834826427771557 -163,1995,0.7838745800671892 +163,1992,0.715151865111445 +163,1993,0.8872271624898953 +163,1994,1 +163,1995,0.8084074373484239 163,1996,1 -163,1997,0.759518477043673 -163,1998,0.6486562150055991 -163,1999,0.4966405375139978 -163,2000,0.4784434490481523 -163,2001,0.251959686450168 -163,2002,0.3323068309070549 -163,2003,0.1229003359462486 -163,2004,0.12206047032474804 -163,2005,0.12877939529675253 -163,2006,0.10918253079507279 -163,2007,0.19260918253079506 -163,2008,0.11310190369540873 -163,2009,0.12486002239641657 -163,2010,0.15733482642777155 -163,2011,0.11002239641657335 -163,2012,0.25755879059350506 -163,2013,0.15761478163493842 -163,2014,0.17357222844344905 -163,2015,0.10470324748040313 -163,2016,0.2578387458006719 -163,2017,0.1391377379619261 -163,2018,0.25139977603583424 -163,2019,0.11422172452407615 -163,2020,0.11170212765957446 -163,2021,0.01959686450167973 +163,1997,0.7832890634022408 +163,1998,0.6689571544058208 +163,1999,0.5121838549486086 +163,2000,0.4934172537244488 +163,2001,0.25984524771913625 +163,2002,0.3427070100473497 +163,2003,0.12674673749855647 +163,2004,0.125880586672826 +163,2005,0.13280979327866965 +163,2006,0.11259960734495905 +163,2007,0.19863725603418417 +163,2008,0.11664164453170117 +163,2009,0.12876775609192753 +163,2010,0.1622589213535051 +163,2011,0.1134657581706895 +163,2012,0.2656195865573393 +163,2013,0.16254763829541524 +163,2014,0.17900450398429388 +163,2015,0.10798013627439662 +163,2016,0.26590830349924943 +163,2017,0.14349232012934526 +163,2018,0.25926781383531594 +163,2019,0.11779651229934178 +163,2020,0.11519805982215041 +163,2021,0.020210185933710597 164,1950,0 164,1951,0 164,1952,0 @@ -11447,89 +11447,89 @@ rgn_id,year,pressure_score 169,2019,0 169,2020,0 169,2021,0 -171,1950,0.035862262038073904 -171,1951,0.05013997760358342 -171,1952,0.04706047032474804 -171,1953,0.04902015677491601 -171,1954,0.05657894736842105 -171,1955,0.059658454647256436 -171,1956,0.06077827547592385 -171,1957,0.03418253079507279 -171,1958,0.035862262038073904 -171,1959,0.08821388577827548 -171,1960,0.22763157894736843 -171,1961,0.3032194848824188 -171,1962,0.2116741321388578 -171,1963,0.11368980963045913 -171,1964,0.0851343784994401 -171,1965,0.0641377379619261 -171,1966,0.12544792833146698 -171,1967,0.18561030235162373 -171,1968,0.18449048152295633 -171,1969,0.17276035834266518 -171,1970,0.2248320268756999 -171,1971,0.3009518477043673 -171,1972,0.24468085106382978 -171,1973,0.23292273236282196 -171,1974,0.22760358342665174 -171,1975,0.3180291153415454 -171,1976,0.22872340425531915 -171,1977,0.2992721164613662 -171,1978,0.20968645016797313 -171,1979,0.21836506159014557 -171,1980,0.27743561030235164 -171,1981,0.22564389697648377 -171,1982,0.24524076147816348 -171,1983,0.2553191489361702 -171,1984,0.17161254199328108 -171,1985,0.17049272116461367 -171,1986,0.001959686450167973 -171,1987,0.0011198208286674132 -171,1988,8.398656215005599e-4 -171,1989,8.398656215005599e-4 -171,1990,8.398656215005599e-4 -171,1991,0.007838745800671893 -171,1992,0.055431131019036954 -171,1993,0.07474804031354983 -171,1994,0.0940929451287794 -171,1995,0.06273796192609182 -171,1996,0.13860582306830907 -171,1997,0.04594064949608063 -171,1998,0.03698208286674132 -171,1999,0.3048992161254199 -171,2000,0.41968085106382974 -171,2001,0.005319148936170213 -171,2002,0.018197088465845463 -171,2003,0.03387458006718925 -171,2004,0.023516237402015677 -171,2005,8.398656215005599e-4 -171,2006,0.0671892497200448 -171,2007,0.03527435610302351 -171,2008,0.0075587905935050395 -171,2009,0.006998880179171333 -171,2010,0.01959686450167973 -171,2011,0.011758118701007838 -171,2012,0.0083986562150056 -171,2013,0.0011198208286674132 -171,2014,0.01707726763717805 -171,2015,2.799552071668533e-4 +171,1950,0.036984640258690395 +171,1951,0.05170920429610812 +171,1952,0.04853331793509645 +171,1953,0.05055433652846751 +171,1954,0.058349693960041596 +171,1955,0.061525580321053264 +171,1956,0.06268044808869387 +171,1957,0.03525233860722948 +171,1958,0.036984640258690395 +171,1959,0.09097470839588871 +171,1960,0.23475574546714412 +171,1961,0.31270931978288496 +171,1962,0.21829887977826548 +171,1963,0.11724795010971249 +171,1964,0.08779882203487704 +171,1965,0.06614505139161568 +171,1966,0.12937406166993887 +171,1967,0.1914193324864304 +171,1968,0.19026446471878977 +171,1969,0.17816722485275444 +171,1970,0.2318685760480426 +171,1971,0.31037071255341275 +171,1972,0.2523386072294723 +171,1973,0.24021249566924596 +171,1974,0.2347268737729531 +171,1975,0.327982446009932 +171,1976,0.23588174154059371 +171,1977,0.3086384109019519 +171,1978,0.2162489894907034 +171,1979,0.2251992146899181 +171,1980,0.28611848943296003 +171,1981,0.23270585517958203 +171,1982,0.25291604111329263 +171,1983,0.26330985102205806 +171,1984,0.17698348539092282 +171,1985,0.1758286176232822 +171,1986,0.00202101859337106 +171,1987,0.0011548677676406056 +171,1988,8.661508257304543e-4 +171,1989,8.661508257304543e-4 +171,1990,8.661508257304543e-4 +171,1991,0.00808407437348424 +171,1992,0.05716595449820998 +171,1993,0.07708742349001042 +171,1994,0.09703776417600189 +171,1995,0.06470146668206493 +171,1996,0.14294375793971598 +171,1997,0.04737845016745584 +171,1998,0.038139508026331 +171,1999,0.3144416214343459 +171,2000,0.43281556761750795 +171,2001,0.005485621896292877 +171,2002,0.01876660122415984 +171,2003,0.03493474997112832 +171,2004,0.024252223120452717 +171,2005,8.661508257304543e-4 +171,2006,0.06929206605843634 +171,2007,0.03637833468067908 +171,2008,0.007795357431574088 +171,2009,0.007217923547753785 +171,2010,0.020210185933710597 +171,2011,0.012126111560226359 +171,2012,0.008661508257304542 +171,2013,0.0011548677676406056 +171,2014,0.017611733456519237 +171,2015,2.887169419101514e-4 171,2016,0 171,2017,0 171,2018,0 171,2019,0 171,2020,0 171,2021,0 -172,1950,0.2648376259798432 -172,1951,0.22284434490481522 -172,1952,0.22340425531914893 -172,1953,0.18980963045912655 -172,1954,0.30319148936170215 -172,1955,0.26511758118701007 -172,1956,0.22732362821948487 -172,1957,0.3101903695408735 -172,1958,0.5207166853303471 -172,1959,0.2583986562150056 -172,1960,0.2609182530795073 +172,1950,0.27312622704700323 +172,1951,0.22981868576048053 +172,1952,0.23039611964430082 +172,1953,0.19575008661508267 +172,1954,0.312680448088694 +172,1955,0.27341494398891336 +172,1956,0.23443815683104294 +172,1957,0.31989837163644774 +172,1958,0.5370135119528816 +172,1959,0.26648573738306974 +172,1960,0.2690841898602611 172,1961,0 172,1962,0 172,1963,0 @@ -11553,41 +11553,41 @@ rgn_id,year,pressure_score 172,1981,0 172,1982,0 172,1983,0 -172,1984,0.005879059350503919 -172,1985,0.004479283314669653 -172,1986,0.008678611422172453 -172,1987,0.008118701007838746 +172,1984,0.006063055780113179 +172,1985,0.004619471070562422 +172,1986,0.008950225199214694 +172,1987,0.00837279131539439 172,1988,0 172,1989,0 172,1990,0 -172,1991,0.011478163493840985 -172,1992,0.026875699888017916 -172,1993,0.1019036954087346 -172,1994,0.032754759238521836 -172,1995,0.04535274356103024 +172,1991,0.011837394618316208 +172,1992,0.027716826423374537 +172,1993,0.10509296685529511 +172,1994,0.03377988220348772 +172,1995,0.04677214458944453 172,1996,0 172,1997,0 -172,1998,0.0041993281075028 -172,1999,0.0033594624860022394 -172,2000,0.13689809630459127 -172,2001,0.056270996640537516 -172,2002,0.07278835386338185 -172,2003,0.25699888017917133 -172,2004,0.2564389697648376 -172,2005,0.008118701007838746 -172,2006,0.028275475923852184 -172,2007,2.799552071668533e-4 -172,2008,0.007838745800671893 -172,2009,0.03135498320268757 -172,2010,0.03387458006718925 -172,2011,0.05039193729003359 +172,1998,0.004330754128652271 +172,1999,0.003464603302921817 +172,2000,0.14118258459406405 +172,2001,0.05803210532394043 +172,2002,0.07506640489663936 +172,2003,0.265042152673519 +172,2004,0.2644647187896987 +172,2005,0.00837279131539439 +172,2006,0.029160411132925293 +172,2007,2.887169419101514e-4 +172,2008,0.00808407437348424 +172,2009,0.03233629749393696 +172,2010,0.03493474997112832 +172,2011,0.05196904954382725 172,2012,0 172,2013,0 -172,2014,2.799552071668533e-4 +172,2014,2.887169419101514e-4 172,2015,0 172,2016,0 172,2017,0 -172,2018,0.003079507278835386 +172,2018,0.0031758863610116656 172,2019,0 172,2020,0 172,2021,0 @@ -11757,8 +11757,8 @@ rgn_id,year,pressure_score 175,1969,0 175,1970,0 175,1971,0 -175,1972,2.799552071668533e-4 -175,1973,2.799552071668533e-4 +175,1972,2.887169419101514e-4 +175,1973,2.887169419101514e-4 175,1974,0 175,1975,0 175,1976,0 @@ -11774,10 +11774,10 @@ rgn_id,year,pressure_score 175,1986,0 175,1987,0 175,1988,0 -175,1989,0.02883538633818589 +175,1989,0.029737845016745597 175,1990,0 -175,1991,0.025755879059350503 -175,1992,0.033314669652855546 +175,1991,0.02656195865573393 +175,1992,0.03435731608730802 175,1993,1 175,1994,1 175,1995,1 @@ -11844,56 +11844,56 @@ rgn_id,year,pressure_score 176,1984,0 176,1985,0 176,1986,0 -176,1987,0.003639417693169093 +176,1987,0.003753320244831968 176,1988,0 176,1989,0 -176,1990,0.005879059350503919 -176,1991,0.0083986562150056 -176,1992,0.0025195968645016797 -176,1993,0.0033594624860022394 -176,1994,0.005039193729003359 -176,1995,0.0022396416573348264 -176,1996,0.003919372900335946 -176,1997,0.0011198208286674132 -176,1998,0.0013997760358342665 -176,1999,8.398656215005599e-4 -176,2000,0.0013997760358342665 -176,2001,0.0022396416573348264 -176,2002,0.0022396416573348264 -176,2003,0.002799552071668533 -176,2004,0.0013997760358342665 -176,2005,0.0011198208286674132 -176,2006,0.0025195968645016797 -176,2007,0.0075587905935050395 -176,2008,0.0022396416573348264 -176,2009,0.0022396416573348264 -176,2010,0.0011198208286674132 -176,2011,0.0013997760358342665 +176,1990,0.006063055780113179 +176,1991,0.008661508257304542 +176,1992,0.0025984524771913626 +176,1993,0.003464603302921817 +176,1994,0.005196904954382725 +176,1995,0.002309735535281211 +176,1996,0.00404203718674212 +176,1997,0.0011548677676406056 +176,1998,0.001443584709550757 +176,1999,8.661508257304543e-4 +176,2000,0.001443584709550757 +176,2001,0.002309735535281211 +176,2002,0.002309735535281211 +176,2003,0.002887169419101514 +176,2004,0.001443584709550757 +176,2005,0.0011548677676406056 +176,2006,0.0025984524771913626 +176,2007,0.007795357431574088 +176,2008,0.002309735535281211 +176,2009,0.002309735535281211 +176,2010,0.0011548677676406056 +176,2011,0.001443584709550757 176,2012,0 -176,2013,0.0025195968645016797 +176,2013,0.0025984524771913626 176,2014,0 176,2015,0 -176,2016,0.0041993281075028 +176,2016,0.004330754128652271 176,2017,0 176,2018,0 -176,2019,0.003919372900335946 -176,2020,0.004479283314669653 -176,2021,0.004479283314669653 -177,1950,0 -177,1951,0 -177,1952,0 -177,1953,0 -177,1954,0 -177,1955,0 -177,1956,0 -177,1957,0 -177,1958,0 -177,1959,0 -177,1960,0 -177,1961,0 -177,1962,0 -177,1963,0 -177,1964,0 +176,2019,0.00404203718674212 +176,2020,0.004619471070562422 +176,2021,0.004619471070562422 +177,1950,0.37388843977364605 +177,1951,0.47927012357085136 +177,1952,0.4763829541517498 +177,1953,0.45472918350848845 +177,1954,0.49399468760826903 +177,1955,0.2448319667398084 +177,1956,0.4807137082804021 +177,1957,0.4140200946991571 +177,1958,0.5390345305462527 +177,1959,0.642683912691997 +177,1960,0.600819956115025 +177,1961,0.6386418755052549 +177,1962,0.4700311814297265 +177,1963,0.375620741425107 +177,1964,0.34126342533779896 177,1965,0 177,1966,0 177,1967,0 @@ -11916,41 +11916,41 @@ rgn_id,year,pressure_score 177,1984,0 177,1985,0 177,1986,0 -177,1987,0 +177,1987,0.00202101859337106 177,1988,0 177,1989,0 -177,1990,0 +177,1990,5.774338838203028e-4 177,1991,0 -177,1992,0 -177,1993,0 -177,1994,0 -177,1995,0 -177,1996,0 -177,1997,0 -177,1998,0 +177,1992,0.027428109481464385 +177,1993,0.005774338838203028 +177,1994,0.034068599145397865 +177,1995,0.0031758863610116656 +177,1996,0.013858413211687268 +177,1997,0.013858413211687268 +177,1998,0.009527659083034996 177,1999,0 -177,2000,0 +177,2000,5.774338838203028e-4 177,2001,0 177,2002,0 177,2003,0 -177,2004,0 -177,2005,0 -177,2006,0 -177,2007,0 +177,2004,0.02887169419101514 +177,2005,0.04330754128652271 +177,2006,0.07275666936135816 +177,2007,0.04994803095045619 177,2008,0 177,2009,0 -177,2010,0 +177,2010,0.010971243792585754 177,2011,0 -177,2012,0 +177,2012,2.887169419101514e-4 177,2013,0 -177,2014,0 -177,2015,0 +177,2014,5.774338838203028e-4 +177,2015,2.887169419101514e-4 177,2016,0 -177,2017,0 -177,2018,0 -177,2019,0 -177,2020,0 -177,2021,0 +177,2017,0.0031758863610116656 +177,2018,0.0031758863610116656 +177,2019,0.002887169419101514 +177,2020,0.0017323016514609085 +177,2021,0.00404203718674212 178,1950,0 178,1951,0 178,1952,0 @@ -11990,8 +11990,8 @@ rgn_id,year,pressure_score 178,1986,0 178,1987,0 178,1988,0 -178,1989,0.0011198208286674132 -178,1990,2.799552071668533e-4 +178,1989,0.0011548677676406056 +178,1990,2.887169419101514e-4 178,1991,0 178,1992,0 178,1993,0 @@ -12023,16 +12023,16 @@ rgn_id,year,pressure_score 178,2019,0 178,2020,0 178,2021,0 -179,1950,0.393057110862262 -179,1951,0.4832026875699888 -179,1952,0.12206047032474804 +179,1950,0.4053585864418526 +179,1951,0.49832544173692134 +179,1952,0.125880586672826 179,1953,0 179,1954,0 179,1955,0 179,1956,0 179,1957,0 179,1958,0 -179,1959,0.04983202687569989 +179,1959,0.051391615660006953 179,1960,0 179,1961,0 179,1962,0 @@ -12055,43 +12055,43 @@ rgn_id,year,pressure_score 179,1979,0 179,1980,0 179,1981,0 -179,1982,0.009798432250839866 -179,1983,0.8471444568868981 -179,1984,0.0025195968645016797 -179,1985,0.006438969764837626 -179,1986,0.005039193729003359 -179,1987,0.0022396416573348264 +179,1982,0.010105092966855298 +179,1983,0.8736574662201182 +179,1984,0.0025984524771913626 +179,1985,0.006640489663933482 +179,1986,0.005196904954382725 +179,1987,0.002309735535281211 179,1988,0 -179,1989,0.01427771556550952 -179,1990,0.006998880179171333 +179,1989,0.014724564037417722 +179,1990,0.007217923547753785 179,1991,0 -179,1992,0.13297872340425532 -179,1993,0.4944008958566629 -179,1994,0.016517357222844344 -179,1995,0.005319148936170213 -179,1996,0.008958566629339306 -179,1997,0.09098544232922733 -179,1998,0.013997760358342666 -179,1999,0.05375139977603583 -179,2000,0.07586786114221725 -179,2001,0.048432250839865625 -179,2002,0.0761478163493841 -179,2003,0.03387458006718925 -179,2004,0.04143337066069429 -179,2005,0.03891377379619261 -179,2006,0.02127659574468085 -179,2007,0.013437849944008958 -179,2008,0.011478163493840985 -179,2009,0.04479283314669653 -179,2010,0.002799552071668533 -179,2011,0.0425531914893617 +179,1992,0.13714054740732193 +179,1993,0.5098741194133274 +179,1994,0.017034299572698933 +179,1995,0.005485621896292877 +179,1996,0.009238942141124844 +179,1997,0.09383300612079921 +179,1998,0.01443584709550757 +179,1999,0.055433652846749074 +179,2000,0.07824229125765103 +179,2001,0.04994803095045619 +179,2002,0.07853100819956119 +179,2003,0.03493474997112832 +179,2004,0.04273010740270241 +179,2005,0.040131654925511046 +179,2006,0.02194248758517151 +179,2007,0.013858413211687268 +179,2008,0.011837394618316208 +179,2009,0.046194710705624226 +179,2010,0.002887169419101514 +179,2011,0.04388497517034302 179,2012,0 -179,2013,8.398656215005599e-4 +179,2013,8.661508257304543e-4 179,2014,0 -179,2015,2.799552071668533e-4 -179,2016,0.011478163493840985 -179,2017,0.022396416573348264 -179,2018,0.023236282194848825 +179,2015,2.887169419101514e-4 +179,2016,0.011837394618316208 +179,2017,0.023097355352812113 +179,2018,0.02396350617854257 179,2019,0 179,2020,0 179,2021,0 @@ -12108,7 +12108,7 @@ rgn_id,year,pressure_score 180,1960,1 180,1961,1 180,1962,1 -180,1963,0.43449048152295633 +180,1963,0.44808869384455496 180,1964,0 180,1965,0 180,1966,0 @@ -12129,44 +12129,44 @@ rgn_id,year,pressure_score 180,1981,0 180,1982,0 180,1983,0 -180,1984,2.799552071668533e-4 -180,1985,0.0016797312430011197 +180,1984,2.887169419101514e-4 +180,1985,0.0017323016514609085 180,1986,0 -180,1987,0.02547592385218365 -180,1988,0.0013997760358342665 -180,1989,0.005879059350503919 -180,1990,0.0033594624860022394 +180,1987,0.026273241713823777 +180,1988,0.001443584709550757 +180,1989,0.006063055780113179 +180,1990,0.003464603302921817 180,1991,0 180,1992,0 -180,1993,0.20968645016797313 -180,1994,0.23096304591265399 -180,1995,0.3082306830907055 -180,1996,0.2110862262038074 -180,1997,0.2242441209406495 -180,1998,0.013437849944008958 -180,1999,0.007278835386338186 -180,2000,0.013717805151175811 -180,2001,0.024356103023516238 -180,2002,0.019036954087346025 -180,2003,0.03975363941769317 -180,2004,0.1307390817469205 -180,2005,5.599104143337066e-4 -180,2006,0.015117581187010079 -180,2007,0.015397536394176932 -180,2008,0.007838745800671893 +180,1993,0.2162489894907034 +180,1994,0.2381914770758749 +180,1995,0.3178773530430767 +180,1996,0.21769257420025417 +180,1997,0.23126227047003128 +180,1998,0.013858413211687268 +180,1999,0.007506640489663936 +180,2000,0.014147130153597419 +180,2001,0.025118373946183173 +180,2002,0.019632752049890297 +180,2003,0.0409978057512415 +180,2004,0.1348308118720407 +180,2005,5.774338838203028e-4 +180,2006,0.015590714863148177 +180,2007,0.01587943180505833 +180,2008,0.00808407437348424 180,2009,0 180,2010,0 -180,2011,0.03303471444568869 +180,2011,0.034068599145397865 180,2012,0 -180,2013,0.016237402015677492 -180,2014,0.003919372900335946 -180,2015,0.006159014557670772 -180,2016,0.003079507278835386 -180,2017,0.005879059350503919 -180,2018,0.0041993281075028 -180,2019,0.006438969764837626 -180,2020,0.005879059350503919 -180,2021,0.005599104143337066 +180,2013,0.01674558263078878 +180,2014,0.00404203718674212 +180,2015,0.006351772722023331 +180,2016,0.0031758863610116656 +180,2017,0.006063055780113179 +180,2018,0.004330754128652271 +180,2019,0.006640489663933482 +180,2020,0.006063055780113179 +180,2021,0.005774338838203028 181,1950,0 181,1951,0 181,1952,0 @@ -12209,27 +12209,27 @@ rgn_id,year,pressure_score 181,1989,0 181,1990,0 181,1991,0 -181,1992,0.003079507278835386 -181,1993,0.5089585666293394 +181,1992,0.0031758863610116656 +181,1993,0.5248874003926552 181,1994,0 -181,1995,2.799552071668533e-4 -181,1996,0.1396976483762598 -181,1997,0.0013997760358342665 -181,1998,0.008678611422172453 -181,1999,0.044232922732362824 -181,2000,0.0013997760358342665 -181,2001,5.599104143337066e-4 -181,2002,0.006159014557670772 -181,2003,0.0022396416573348264 -181,2004,0.0022396416573348264 +181,1995,2.887169419101514e-4 +181,1996,0.14406975401316555 +181,1997,0.001443584709550757 +181,1998,0.008950225199214694 +181,1999,0.04561727682180392 +181,2000,0.001443584709550757 +181,2001,5.774338838203028e-4 +181,2002,0.006351772722023331 +181,2003,0.002309735535281211 +181,2004,0.002309735535281211 181,2005,0 -181,2006,0.003079507278835386 -181,2007,5.599104143337066e-4 +181,2006,0.0031758863610116656 +181,2007,5.774338838203028e-4 181,2008,0 181,2009,0 181,2010,0 -181,2011,0.0033594624860022394 -181,2012,2.799552071668533e-4 +181,2011,0.003464603302921817 +181,2012,2.887169419101514e-4 181,2013,0 181,2014,0 181,2015,0 @@ -12239,42 +12239,42 @@ rgn_id,year,pressure_score 181,2019,0 181,2020,0 181,2021,0 -182,1950,0.040873460246360585 -182,1951,0.06606942889137737 -182,1952,0.0767077267637178 -182,1953,0.03583426651735722 -182,1954,0.07894736842105263 -182,1955,0.08174692049272117 -182,1956,0.07642777155655095 -182,1957,0.08426651735722285 -182,1958,0.05067189249720045 -182,1959,0.06634938409854424 -182,1960,0.0551511758118701 -182,1961,0.05375139977603583 -182,1962,0.055431131019036954 -182,1963,0.03527435610302351 -182,1964,0.06131019036954087 -182,1965,0.0797872340425532 -182,1966,0.07922732362821948 -182,1967,0.0803471444568869 -182,1968,0.10050391937290033 -182,1969,0.0881858902575588 -182,1970,0.11562150055991041 -182,1971,0.10106382978723404 -182,1972,0.07586786114221725 -182,1973,0.07026875699888017 -182,1974,0.06270996640537514 -182,1975,0.12625979843225085 -182,1976,0.11478163493840986 -182,1977,0.06550951847704367 -182,1978,0.16601343784994402 -182,1979,0.15313549832026876 -182,1980,0.06550951847704367 -182,1981,0.040873460246360585 -182,1982,0.041993281075028 -182,1983,0.0335946248600224 -182,1984,0.02855543113101904 -182,1985,0.013437849944008958 +182,1950,0.042152673518882106 +182,1951,0.06813719829079573 +182,1952,0.07910844208338148 +182,1953,0.03695576856449938 +182,1954,0.0814181776186627 +182,1955,0.08430534703776421 +182,1956,0.07881972514147133 +182,1957,0.08690379951495557 +182,1958,0.052257766485737406 +182,1959,0.06842591523270589 +182,1960,0.05687723755629983 +182,1961,0.055433652846749074 +182,1962,0.05716595449820998 +182,1963,0.03637833468067908 +182,1964,0.06322901027832316 +182,1965,0.08228432844439315 +182,1966,0.08170689456057285 +182,1967,0.08286176232821345 +182,1968,0.10364938214574436 +182,1969,0.09094583670169769 +182,1970,0.11924009700889253 +182,1971,0.10422681602956466 +182,1972,0.07824229125765103 +182,1973,0.072467952419448 +182,1974,0.06467259498787392 +182,1975,0.13021134080147828 +182,1976,0.11837394618316208 +182,1977,0.06755976440697543 +182,1978,0.1712091465527198 +182,1979,0.1579281672248528 +182,1980,0.06755976440697543 +182,1981,0.042152673518882106 +182,1982,0.04330754128652271 +182,1983,0.03464603302921817 +182,1984,0.029449128074835445 +182,1985,0.013858413211687268 182,1986,0 182,1987,0 182,1988,0 @@ -12283,72 +12283,72 @@ rgn_id,year,pressure_score 182,1991,0 182,1992,0 182,1993,0 -182,1994,0.009798432250839866 -182,1995,0.0011198208286674132 -182,1996,8.398656215005599e-4 -182,1997,0.001959686450167973 -182,1998,0.0033594624860022394 -182,1999,0.004759238521836506 -182,2000,0.008958566629339306 -182,2001,0.0041993281075028 -182,2002,0.013717805151175811 -182,2003,0.08314669652855543 -182,2004,0.07306830907054872 -182,2005,0.0022396416573348264 -182,2006,0.005039193729003359 -182,2007,0.0011198208286674132 -182,2008,0.0022396416573348264 -182,2009,2.799552071668533e-4 -182,2010,5.599104143337066e-4 -182,2011,0.0022396416573348264 -182,2012,0.0033594624860022394 -182,2013,0.018197088465845463 -182,2014,8.398656215005599e-4 -182,2015,0.0016797312430011197 -182,2016,0.006998880179171333 -182,2017,0.006159014557670772 -182,2018,0.006718924972004479 -182,2019,0.004479283314669653 +182,1994,0.010105092966855298 +182,1995,0.0011548677676406056 +182,1996,8.661508257304543e-4 +182,1997,0.00202101859337106 +182,1998,0.003464603302921817 +182,1999,0.004908188012472574 +182,2000,0.009238942141124844 +182,2001,0.004330754128652271 +182,2002,0.014147130153597419 +182,2003,0.08574893174731497 +182,2004,0.07535512183854952 +182,2005,0.002309735535281211 +182,2006,0.005196904954382725 +182,2007,0.0011548677676406056 +182,2008,0.002309735535281211 +182,2009,2.887169419101514e-4 +182,2010,5.774338838203028e-4 +182,2011,0.002309735535281211 +182,2012,0.003464603302921817 +182,2013,0.01876660122415984 +182,2014,8.661508257304543e-4 +182,2015,0.0017323016514609085 +182,2016,0.007217923547753785 +182,2017,0.006351772722023331 +182,2018,0.006929206605843634 +182,2019,0.004619471070562422 182,2020,0 182,2021,0 -183,1950,0.12541993281075028 -183,1951,0.2597984322508399 -183,1952,0.21948488241881298 -183,1953,0.17833146696528557 -183,1954,0.2259238521836506 -183,1955,0.23488241881298993 -183,1956,0.19736842105263158 -183,1957,0.23572228443449048 -183,1958,0.19624860022396418 -183,1959,0.1601343784994401 -183,1960,0.1696528555431131 -183,1961,0.14193729003359462 -183,1962,0.16321388577827547 -183,1963,0.18421052631578946 -183,1964,0.17105263157894737 -183,1965,0.14837625979843225 -183,1966,0.11478163493840986 -183,1967,0.11058230683090706 -183,1968,0.03975363941769317 -183,1969,0.06382978723404255 -183,1970,0.06970884658454647 -183,1971,0.09882418812989921 -183,1972,0.10918253079507279 -183,1973,0.10862262038073908 -183,1974,0.06550951847704367 -183,1975,0.06662933930571109 -183,1976,0.015957446808510637 -183,1977,0.051511758118701005 -183,1978,0.05739081746920493 -183,1979,0.05011198208286674 -183,1980,0.09238521836506158 -183,1981,0.07026875699888017 -183,1982,0.026595744680851064 -183,1983,0.005879059350503919 -183,1984,0.017637178051511757 +183,1950,0.12934518997574784 +183,1951,0.2679293220926205 +183,1952,0.2263540824575587 +183,1953,0.18391269199676644 +183,1954,0.2329945721214922 +183,1955,0.24223351426261702 +183,1956,0.20354544404665675 +183,1957,0.2430996650883475 +183,1958,0.20239057627901613 +183,1959,0.1651460907726066 +183,1960,0.17496246679755176 +183,1961,0.14637948954844676 +183,1962,0.16832197713361827 +183,1963,0.18997574777687962 +183,1964,0.1764060515071025 +183,1965,0.15301997921238025 +183,1966,0.11837394618316208 +183,1967,0.1140431920545098 +183,1968,0.0409978057512415 +183,1969,0.06582746275551452 +183,1970,0.0718905185356277 +183,1971,0.10191708049428344 +183,1972,0.11259960734495905 +183,1973,0.11202217346113874 +183,1974,0.06755976440697543 +183,1975,0.06871463217461604 +183,1976,0.01645686568887863 +183,1977,0.05312391731146786 +183,1978,0.05918697309158104 +183,1979,0.0516803326019171 +183,1980,0.09527659083034996 +183,1981,0.072467952419448 +183,1982,0.027428109481464385 +183,1983,0.006063055780113179 +183,1984,0.01818916734033954 183,1985,0 183,1986,0 -183,1987,8.398656215005599e-4 +183,1987,8.661508257304543e-4 183,1988,0 183,1989,0 183,1990,0 @@ -12364,12 +12364,12 @@ rgn_id,year,pressure_score 183,2000,0 183,2001,0 183,2002,0 -183,2003,0.0011198208286674132 -183,2004,0.001959686450167973 -183,2005,0.0011198208286674132 -183,2006,2.799552071668533e-4 +183,2003,0.0011548677676406056 +183,2004,0.00202101859337106 +183,2005,0.0011548677676406056 +183,2006,2.887169419101514e-4 183,2007,0 -183,2008,0.009798432250839866 +183,2008,0.010105092966855298 183,2009,0 183,2010,0 183,2011,0 @@ -12419,9 +12419,9 @@ rgn_id,year,pressure_score 184,1983,0 184,1984,0 184,1985,0 -184,1986,0.0033594624860022394 -184,1987,0.012038073908174692 -184,1988,0.024356103023516238 +184,1986,0.003464603302921817 +184,1987,0.01241482850213651 +184,1988,0.025118373946183173 184,1989,0 184,1990,0 184,1991,0 @@ -12432,29 +12432,29 @@ rgn_id,year,pressure_score 184,1996,0 184,1997,0 184,1998,0 -184,1999,0.005319148936170213 -184,2000,0.006718924972004479 +184,1999,0.005485621896292877 +184,2000,0.006929206605843634 184,2001,0 -184,2002,0.003079507278835386 -184,2003,0.002799552071668533 -184,2004,0.0016797312430011197 -184,2005,0.006159014557670772 -184,2006,2.799552071668533e-4 -184,2007,0.001959686450167973 -184,2008,0.0025195968645016797 +184,2002,0.0031758863610116656 +184,2003,0.002887169419101514 +184,2004,0.0017323016514609085 +184,2005,0.006351772722023331 +184,2006,2.887169419101514e-4 +184,2007,0.00202101859337106 +184,2008,0.0025984524771913626 184,2009,0 -184,2010,8.398656215005599e-4 -184,2011,0.0033594624860022394 -184,2012,0.003919372900335946 +184,2010,8.661508257304543e-4 +184,2011,0.003464603302921817 +184,2012,0.00404203718674212 184,2013,0 184,2014,0 184,2015,0 184,2016,0 184,2017,0 184,2018,0 -184,2019,0.001959686450167973 -184,2020,0.0016797312430011197 -184,2021,0.0011198208286674132 +184,2019,0.00202101859337106 +184,2020,0.0017323016514609085 +184,2021,0.0011548677676406056 185,1950,0 185,1951,0 185,1952,0 @@ -12651,24 +12651,24 @@ rgn_id,year,pressure_score 187,1999,0 187,2000,0 187,2001,0 -187,2002,0.0011198208286674132 -187,2003,2.799552071668533e-4 +187,2002,0.0011548677676406056 +187,2003,2.887169419101514e-4 187,2004,0 -187,2005,5.599104143337066e-4 +187,2005,5.774338838203028e-4 187,2006,0 -187,2007,8.398656215005599e-4 -187,2008,0.0016797312430011197 -187,2009,5.599104143337066e-4 +187,2007,8.661508257304543e-4 +187,2008,0.0017323016514609085 +187,2009,5.774338838203028e-4 187,2010,0 187,2011,0 187,2012,0 187,2013,0 187,2014,0 -187,2015,8.398656215005599e-4 -187,2016,0.0011198208286674132 -187,2017,0.0016797312430011197 +187,2015,8.661508257304543e-4 +187,2016,0.0011548677676406056 +187,2017,0.0017323016514609085 187,2018,0 -187,2019,2.799552071668533e-4 +187,2019,2.887169419101514e-4 187,2020,0 187,2021,0 188,1950,0 @@ -13204,12 +13204,12 @@ rgn_id,year,pressure_score 195,1976,0 195,1977,0 195,1978,0 -195,1979,2.7995520716685332e-5 -195,1980,2.799552071668533e-4 -195,1981,2.799552071668533e-4 -195,1982,2.7995520716685332e-5 -195,1983,2.7995520716685332e-5 -195,1984,2.799552071668533e-4 +195,1979,2.8871694191015142e-5 +195,1980,2.887169419101514e-4 +195,1981,2.887169419101514e-4 +195,1982,2.8871694191015142e-5 +195,1983,2.8871694191015142e-5 +195,1984,2.887169419101514e-4 195,1985,0 195,1986,0 195,1987,0 @@ -13225,8 +13225,8 @@ rgn_id,year,pressure_score 195,1997,0 195,1998,0 195,1999,0 -195,2000,0.013997760358342666 -195,2001,0.019876819708846586 +195,2000,0.01443584709550757 +195,2001,0.02049890287562075 195,2002,0 195,2003,0 195,2004,0 @@ -13436,21 +13436,21 @@ rgn_id,year,pressure_score 198,1992,0 198,1993,0 198,1994,0 -198,1995,0.0033594624860022394 -198,1996,0.010358342665173572 -198,1997,0.044512877939529676 -198,1998,0.05039193729003359 -198,1999,0.1187010078387458 -198,2000,0.01427771556550952 -198,2001,0.06662933930571109 -198,2002,0.23600223964165734 -198,2003,0.3099104143337066 -198,2004,0.006998880179171333 -198,2005,0.009518477043673012 -198,2006,0.010078387458006719 -198,2007,0.0013997760358342665 -198,2008,0.0011198208286674132 -198,2009,0.0011198208286674132 +198,1995,0.003464603302921817 +198,1996,0.010682526850675602 +198,1997,0.04590599376371408 +198,1998,0.05196904954382725 +198,1999,0.1224159833699042 +198,2000,0.014724564037417722 +198,2001,0.06871463217461604 +198,2002,0.24338838203025764 +198,2003,0.3196096546945376 +198,2004,0.007217923547753785 +198,2005,0.009816376024945148 +198,2006,0.01039380990876545 +198,2007,0.001443584709550757 +198,2008,0.0011548677676406056 +198,2009,0.0011548677676406056 198,2010,0 198,2011,0 198,2012,0 @@ -13462,7 +13462,7 @@ rgn_id,year,pressure_score 198,2018,0 198,2019,0 198,2020,0 -198,2021,0.005599104143337066 +198,2021,0.005774338838203028 199,1950,0 199,1951,0 199,1952,0 @@ -13658,10 +13658,10 @@ rgn_id,year,pressure_score 202,1998,0 202,1999,0 202,2000,0 -202,2001,0.013997760358342666 -202,2002,0.003919372900335946 -202,2003,0.009238521836506159 -202,2004,0.0033594624860022394 +202,2001,0.01443584709550757 +202,2002,0.00404203718674212 +202,2003,0.009527659083034996 +202,2004,0.003464603302921817 202,2005,0 202,2006,0 202,2007,0 @@ -14245,16 +14245,16 @@ rgn_id,year,pressure_score 210,2009,1 210,2010,1 210,2011,1 -210,2012,0.7424412094064949 -210,2013,0.9241321388577828 +210,2012,0.7656773299457216 +210,2013,0.9530546252454098 210,2014,1 -210,2015,0.8488241881298992 -210,2016,0.8269876819708847 -210,2017,0.8821388577827548 -210,2018,0.7326427771556551 -210,2019,0.7589585666293394 -210,2020,0.6637737961926092 -210,2021,0.43477043673012317 +210,2015,0.8753897678715791 +210,2016,0.8528698464025872 +210,2017,0.909747083958887 +210,2018,0.7555722369788662 +210,2019,0.7827116295184204 +210,2020,0.684547869268969 +210,2021,0.44837741078646515 212,1950,0 212,1951,0 212,1952,0 @@ -14419,29 +14419,29 @@ rgn_id,year,pressure_score 214,1967,0 214,1968,0 214,1969,0 -214,1970,2.7995520716685332e-5 -214,1971,2.7995520716685332e-5 -214,1972,2.7995520716685332e-5 -214,1973,2.7995520716685332e-5 -214,1974,0.0013997760358342665 -214,1975,0.0022396416573348264 -214,1976,0.002799552071668533 -214,1977,0.0025195968645016797 -214,1978,0.0013997760358342665 -214,1979,2.799552071668533e-4 -214,1980,2.799552071668533e-4 -214,1981,5.599104143337066e-4 -214,1982,8.398656215005599e-4 -214,1983,5.599104143337066e-4 -214,1984,2.799552071668533e-4 -214,1985,0.0011198208286674132 -214,1986,0.005039193729003359 -214,1987,0.0022396416573348264 -214,1988,0.003639417693169093 -214,1989,0.027995520716685332 -214,1990,0.036674132138857785 -214,1991,0.036394176931690926 -214,1992,0.06466965285554312 +214,1970,2.8871694191015142e-5 +214,1971,2.8871694191015142e-5 +214,1972,2.8871694191015142e-5 +214,1973,2.8871694191015142e-5 +214,1974,0.001443584709550757 +214,1975,0.002309735535281211 +214,1976,0.002887169419101514 +214,1977,0.0025984524771913626 +214,1978,0.001443584709550757 +214,1979,2.887169419101514e-4 +214,1980,2.887169419101514e-4 +214,1981,5.774338838203028e-4 +214,1982,8.661508257304543e-4 +214,1983,5.774338838203028e-4 +214,1984,2.887169419101514e-4 +214,1985,0.0011548677676406056 +214,1986,0.005196904954382725 +214,1987,0.002309735535281211 +214,1988,0.003753320244831968 +214,1989,0.02887169419101514 +214,1990,0.03782191939022984 +214,1991,0.03753320244831968 +214,1992,0.06669361358124498 214,1993,0 214,1994,0 214,1995,0 @@ -14543,130 +14543,130 @@ rgn_id,year,pressure_score 215,2019,0 215,2020,0 215,2021,0 -216,1950,5.5991041433370664e-5 -216,1951,0.056019036954087345 -216,1952,0.056019036954087345 -216,1953,0.056019036954087345 -216,1954,0.056019036954087345 -216,1955,0.056019036954087345 -216,1956,0.056019036954087345 -216,1957,0.056019036954087345 -216,1958,0.08401455767077268 -216,1959,0.0652575587905935 -216,1960,0.06329787234042553 -216,1961,0.09269316909294513 -216,1962,0.09129339305711087 -216,1963,0.09129339305711087 -216,1964,0.1192889137737962 -216,1965,0.12152855543113103 -216,1966,0.11620940649496081 -216,1967,0.11900895856662935 -216,1968,0.12404815229563271 -216,1969,0.15568309070548714 -216,1970,0.12236842105263158 -216,1971,0.12404815229563271 -216,1972,0.12208846584546473 -216,1973,0.0904535274356103 -216,1974,0.31326987681970886 -216,1975,0.28191489361702127 -216,1976,0.13045912653975364 -216,1977,0.08706606942889138 -216,1978,0.1324188129899216 -216,1979,0.08594624860022397 -216,1980,0.05739081746920493 -216,1981,0.0898656215005599 -216,1982,0.19260918253079506 -216,1983,0.13857782754759237 -216,1984,0.10694288913773796 -216,1985,0.14193729003359462 -216,1986,0.09994400895856663 -216,1987,0.047872340425531915 -216,1988,0.17301231802911535 -216,1989,0.1187010078387458 -216,1990,0.07502799552071669 -216,1991,0.11366181410974244 -216,1992,0.08762597984322508 -216,1993,0.0761478163493841 -216,1994,0.1522956326987682 -216,1995,0.16097424412094066 -216,1996,0.20184770436730123 -216,1997,0.1786114221724524 -216,1998,0.21864501679731244 -216,1999,0.19764837625979842 -216,2000,0.20828667413213886 -216,2001,0.09798432250839866 -216,2002,0.0341545352743561 -216,2003,0.03919372900335946 -216,2004,0.04563269876819709 -216,2005,0.04983202687569989 -216,2006,0.054871220604703244 -216,2007,0.054871220604703244 -216,2008,0.06662933930571109 -216,2009,0.09630459126539753 -216,2010,0.0383538633818589 -216,2011,0.010666293393057111 -216,2012,0.05431131019036954 -216,2013,0.005599104143337066 -216,2014,0.010918253079507279 -216,2015,0.05011198208286674 -216,2016,0.2609182530795073 +216,1950,5.7743388382030285e-5 +216,1951,0.05777226007622129 +216,1952,0.05777226007622129 +216,1953,0.05777226007622129 +216,1954,0.05777226007622129 +216,1955,0.05777226007622129 +216,1956,0.05777226007622129 +216,1957,0.05777226007622129 +216,1958,0.08664395426723645 +216,1959,0.06729991915925629 +216,1960,0.06527890056588523 +216,1961,0.09559417946645114 +216,1962,0.09415059475690038 +216,1963,0.09415059475690038 +216,1964,0.12302228894791552 +216,1965,0.12533202448319675 +216,1966,0.11984640258690385 +216,1967,0.12273357200600538 +216,1968,0.1279304769603881 +216,1969,0.1605554913962352 +216,1970,0.12619817530892719 +216,1971,0.1279304769603881 +216,1972,0.12590945836701703 +216,1973,0.09328444393116993 +216,1974,0.3230742579974594 +216,1975,0.29073796050352246 +216,1976,0.13454209493013056 +216,1977,0.0897909689340571 +216,1978,0.13656311352350162 +216,1979,0.08863610116641649 +216,1980,0.05918697309158104 +216,1981,0.0926781383531586 +216,1982,0.19863725603418417 +216,1983,0.14291488624552495 +216,1984,0.11028987180967784 +216,1985,0.14637948954844676 +216,1986,0.10307194826192405 +216,1987,0.04937059706663589 +216,1988,0.17842707010047357 +216,1989,0.1224159833699042 +216,1990,0.07737614043192058 +216,1991,0.11721907841552147 +216,1992,0.09036840281787739 +216,1993,0.07853100819956119 +216,1994,0.15706201639912237 +216,1995,0.16601224159833705 +216,1996,0.20816491511721916 +216,1997,0.1842014089386766 +216,1998,0.22548793163182826 +216,1999,0.20383416098856688 +216,2000,0.21480540478115265 +216,2001,0.10105092966855299 +216,2002,0.03522346691303847 +216,2003,0.040420371867421194 +216,2004,0.04706086153135468 +216,2005,0.051391615660006953 +216,2006,0.056588520614389674 +216,2007,0.056588520614389674 +216,2008,0.06871463217461604 +216,2009,0.09931862801709208 +216,2010,0.03955422104169074 +216,2011,0.01100011548677677 +216,2012,0.05601108673056937 +216,2013,0.005774338838203028 +216,2014,0.011259960734495904 +216,2015,0.0516803326019171 +216,2016,0.2690841898602611 216,2017,0 -216,2018,0.11694568868980963 +216,2018,0.12060572814412755 216,2019,0 -216,2020,0.0028275475923852183 -216,2021,0.006019036954087346 -218,1950,0.2236842105263158 -218,1951,0.2866741321388578 -218,1952,0.135498320268757 -218,1953,0.1570548712206047 -218,1954,0.1763717805151176 +216,2020,0.0029160411132925293 +216,2021,0.006207414251068255 +218,1950,0.23068483658621097 +218,1951,0.295646148515995 +218,1952,0.13973899988451327 +218,1953,0.16197020441159493 +218,1954,0.18189167340339538 218,1955,1 218,1956,1 218,1957,1 -218,1958,0.6671332586786114 -218,1959,0.8118701007838746 -218,1960,0.6592945128779395 +218,1958,0.6880124725718908 +218,1959,0.8372791315394391 +218,1960,0.6799283981984066 218,1961,1 -218,1962,0.36534154535274355 -218,1963,0.3337066069428891 +218,1962,0.3767756091927476 +218,1963,0.34415059475690046 218,1964,1 -218,1965,0.9000559910414334 -218,1966,0.7150055991041433 -218,1967,0.8003919372900336 -218,1968,0.44512877939529677 -218,1969,0.2583986562150056 -218,1970,0.406494960806271 -218,1971,0.23180291153415453 -218,1972,0.24188129899216126 -218,1973,0.24608062709966405 -218,1974,0.41097424412094063 -218,1975,0.29227323628219487 -218,1976,0.3849384098544233 -218,1977,0.4420492721164614 -218,1978,0.27491601343784994 -218,1979,0.21500559910414332 -218,1980,0.3115901455767077 -218,1981,0.30739081746920494 -218,1982,0.335946248600224 -218,1983,0.23236282194848823 -218,1984,0.26539753639417696 -218,1985,0.324468085106383 -218,1986,0.26959686450167974 -218,1987,0.29171332586786114 -218,1988,0.2751959686450168 -218,1989,0.41349384098544234 -218,1990,0.0013997760358342665 -218,1991,0.08202687569988802 -218,1992,0.2642777155655095 -218,1993,0.07586786114221725 -218,1994,0.029115341545352745 -218,1995,0.002799552071668533 -218,1996,0.002799552071668533 -218,1997,0.0041993281075028 -218,1998,5.599104143337066e-4 +218,1965,0.9282249682411368 +218,1966,0.7373830696385267 +218,1967,0.8254417369211229 +218,1968,0.45905993763714076 +218,1969,0.26648573738306974 +218,1970,0.41921699965353987 +218,1971,0.23905762790160537 +218,1972,0.24945143781037082 +218,1973,0.25378219193902307 +218,1974,0.42383647072410224 +218,1975,0.3014204873541981 +218,1976,0.3969857951264582 +218,1977,0.4558840512761291 +218,1978,0.28352003695576866 +218,1979,0.2217346113869963 +218,1980,0.3213419563459985 +218,1981,0.31701120221734624 +218,1982,0.3464603302921817 +218,1983,0.23963506178542568 +218,1984,0.27370366093082354 +218,1985,0.3346229356738655 +218,1986,0.2780344150594758 +218,1987,0.30084305347037776 +218,1988,0.28380875389767884 +218,1989,0.4264349232012936 +218,1990,0.001443584709550757 +218,1991,0.08459406397967437 +218,1992,0.2725487931631829 +218,1993,0.07824229125765103 +218,1994,0.030026561958655745 +218,1995,0.002887169419101514 +218,1996,0.002887169419101514 +218,1997,0.004330754128652271 +218,1998,5.774338838203028e-4 218,1999,0 -218,2000,2.799552071668533e-4 -218,2001,0.261478163493841 +218,2000,2.887169419101514e-4 +218,2001,0.2696616237440814 218,2002,0 218,2003,0 218,2004,0 @@ -14676,17 +14676,17 @@ rgn_id,year,pressure_score 218,2008,0 218,2009,0 218,2010,0 -218,2011,8.398656215005599e-4 +218,2011,8.661508257304543e-4 218,2012,0 -218,2013,8.398656215005599e-4 -218,2014,5.599104143337066e-4 -218,2015,5.599104143337066e-4 -218,2016,5.599104143337066e-4 -218,2017,2.799552071668533e-4 -218,2018,8.398656215005599e-4 -218,2019,0.0011198208286674132 -218,2020,2.799552071668533e-4 -218,2021,5.599104143337066e-4 +218,2013,8.661508257304543e-4 +218,2014,5.774338838203028e-4 +218,2015,5.774338838203028e-4 +218,2016,5.774338838203028e-4 +218,2017,2.887169419101514e-4 +218,2018,8.661508257304543e-4 +218,2019,0.0011548677676406056 +218,2020,2.887169419101514e-4 +218,2021,5.774338838203028e-4 219,1950,0 219,1951,0 219,1952,0 @@ -14938,31 +14938,31 @@ rgn_id,year,pressure_score 222,1982,0 222,1983,0 222,1984,0 -222,1985,0.008118701007838746 -222,1986,0.005319148936170213 -222,1987,0.004759238521836506 -222,1988,0.009798432250839866 -222,1989,0.01707726763717805 -222,1990,0.03135498320268757 -222,1991,0.015397536394176932 +222,1985,0.00837279131539439 +222,1986,0.005485621896292877 +222,1987,0.004908188012472574 +222,1988,0.010105092966855298 +222,1989,0.017611733456519237 +222,1990,0.03233629749393696 +222,1991,0.01587943180505833 222,1992,0 222,1993,0 -222,1994,0.006998880179171333 -222,1995,0.014837625979843226 -222,1996,0.03471444568868981 -222,1997,0.0022396416573348264 -222,1998,0.003919372900335946 -222,1999,5.599104143337066e-4 -222,2000,0.0013997760358342665 -222,2001,8.398656215005599e-4 -222,2002,8.398656215005599e-4 -222,2003,0.0013997760358342665 -222,2004,2.799552071668533e-4 +222,1994,0.007217923547753785 +222,1995,0.015301997921238025 +222,1996,0.03580090079685878 +222,1997,0.002309735535281211 +222,1998,0.00404203718674212 +222,1999,5.774338838203028e-4 +222,2000,0.001443584709550757 +222,2001,8.661508257304543e-4 +222,2002,8.661508257304543e-4 +222,2003,0.001443584709550757 +222,2004,2.887169419101514e-4 222,2005,0 -222,2006,5.599104143337066e-4 -222,2007,8.398656215005599e-4 -222,2008,2.799552071668533e-4 -222,2009,2.799552071668533e-4 +222,2006,5.774338838203028e-4 +222,2007,8.661508257304543e-4 +222,2008,2.887169419101514e-4 +222,2009,2.887169419101514e-4 222,2010,0 222,2011,0 222,2012,0 @@ -14995,98 +14995,98 @@ rgn_id,year,pressure_score 223,1967,1 223,1968,1 223,1969,1 -223,1970,0.9437290033594625 -223,1971,0.7953527435610303 -223,1972,0.7637178051511758 -223,1973,0.576427771556551 -223,1974,0.511478163493841 -223,1975,0.5011198208286675 -223,1976,0.6007838745800672 -223,1977,0.498040313549832 -223,1978,0.4633258678611422 -223,1979,0.6161814109742442 -223,1980,0.5750279955207167 -223,1981,0.5291153415453528 -223,1982,0.549552071668533 -223,1983,0.5207166853303471 -223,1984,0.22508398656215006 -223,1985,0.2158454647256439 -223,1986,0.1061030235162374 -223,1987,0.10526315789473684 -223,1988,0.03499440089585666 -223,1989,0.013157894736842105 -223,1990,0.012318029115341545 -223,1991,5.599104143337066e-4 -223,1992,0.026595744680851064 -223,1993,0.06326987681970885 -223,1994,0.07642777155655095 -223,1995,0.06103023516237402 -223,1996,0.10862262038073908 -223,1997,0.14081746920492721 -223,1998,0.17497200447928332 -223,1999,0.16545352743561031 -223,2000,0.13633818589025756 -223,2001,0.15453527435610304 -223,2002,0.177491601343785 -223,2003,0.18113101903695408 -223,2004,0.1522956326987682 -223,2005,0.17889137737961927 -223,2006,0.1942889137737962 -223,2007,0.16713325867861142 -223,2008,0.14977603583426652 -223,2009,0.135498320268757 -223,2010,0.13101903695408734 -223,2011,0.14921612541993282 -223,2012,0.12989921612541994 -223,2013,0.16629339305711086 -223,2014,0.20604703247480402 -223,2015,0.18477043673012317 -223,2016,0.16545352743561031 -223,2017,0.12094064949608063 -223,2018,0.12793952967525196 -223,2019,0.12010078387458006 -223,2020,0.14081746920492721 -223,2021,0.16153415453527437 -224,1950,0.30599104143337064 -224,1951,0.30627099664053753 -224,1952,0.38465845464725645 -224,1953,0.33538633818589025 -224,1954,0.3717805151175812 -224,1955,0.3617021276595745 -224,1956,0.45716685330347145 -224,1957,0.7032474804031354 -224,1958,0.6486562150055991 -224,1959,0.6248600223964166 -224,1960,0.5834266517357223 -224,1961,0.6534154535274356 -224,1962,0.6396976483762598 -224,1963,0.4311310190369541 -224,1964,0.4221724524076148 -224,1965,0.37737961926091823 -224,1966,0.30739081746920494 -224,1967,0.14361702127659576 -224,1968,0.11982082866741321 -224,1969,0.07082866741321389 -224,1970,0.0814669652855543 -224,1971,0.07082866741321389 -224,1972,0.09854423292273236 -224,1973,0.06886898096304592 -224,1974,0.04591265397536394 -224,1975,0.02967525195968645 -224,1976,0.024356103023516238 -224,1977,0.01707726763717805 -224,1978,0.05263157894736842 -224,1979,0.027715565509518477 -224,1980,0.018197088465845463 -224,1981,0.01791713325867861 +223,1970,0.9732648111791204 +223,1971,0.8202448319667401 +223,1972,0.787619817530893 +223,1973,0.5944681833930018 +223,1974,0.5274858528698466 +223,1975,0.516803326019171 +223,1976,0.6195865573391849 +223,1977,0.5136274396581594 +223,1978,0.4778265388613006 +223,1979,0.6354659891442432 +223,1980,0.593024598683451 +223,1981,0.5456750202101862 +223,1982,0.5667513569696272 +223,1983,0.5370135119528816 +223,1984,0.23212842129576172 +223,1985,0.22260076221272673 +223,1986,0.10942372098394738 +223,1987,0.10855757015821693 +223,1988,0.036089617738768925 +223,1989,0.013569696269777116 +223,1990,0.012703545444046662 +223,1991,5.774338838203028e-4 +223,1992,0.027428109481464385 +223,1993,0.06525002887169422 +223,1994,0.07881972514147133 +223,1995,0.062940293336413 +223,1996,0.11202217346113874 +223,1997,0.14522462178080617 +223,1998,0.18044808869384463 +223,1999,0.17063171266889948 +223,2000,0.14060515071024374 +223,2001,0.1593717519344036 +223,2002,0.183046541171036 +223,2003,0.18679986141586796 +223,2004,0.15706201639912237 +223,2005,0.18449012588058675 +223,2006,0.20036955768564507 +223,2007,0.1723640143203604 +223,2008,0.154463563921931 +223,2009,0.13973899988451327 +223,2010,0.13511952881395087 +223,2011,0.1538861300381107 +223,2012,0.13396466104631025 +223,2013,0.17149786349462995 +223,2014,0.21249566924587143 +223,2015,0.19055318166069993 +223,2016,0.17063171266889948 +223,2017,0.12472571890518541 +223,2018,0.13194364245293919 +223,2019,0.12385956807945496 +223,2020,0.14522462178080617 +223,2021,0.16658967548215736 +224,1950,0.3155676175077955 +224,1951,0.3158563344497056 +224,1952,0.396697078184548 +224,1953,0.3458828964083614 +224,1954,0.3834160988566811 +224,1955,0.3730222889479156 +224,1956,0.47147476613927725 +224,1957,0.7252569580783004 +224,1958,0.6689571544058208 +224,1959,0.644416214343458 +224,1960,0.6016861069407555 +224,1961,0.6738653424182934 +224,1962,0.659718212264696 +224,1963,0.44462409054163315 +224,1964,0.43538514840050835 +224,1965,0.3891904376948841 +224,1966,0.31701120221734624 +224,1967,0.14811179119990767 +224,1968,0.1235708511375448 +224,1969,0.0730453863032683 +224,1970,0.08401663009585406 +224,1971,0.0730453863032683 +224,1972,0.1016283635523733 +224,1973,0.07102436770989724 +224,1974,0.04734957847326483 +224,1975,0.03060399584247605 +224,1976,0.025118373946183173 +224,1977,0.017611733456519237 +224,1978,0.054278785079108466 +224,1979,0.02858297724910499 +224,1980,0.01876660122415984 +224,1981,0.01847788428224969 224,1982,0 -224,1983,0.0011198208286674132 +224,1983,0.0011548677676406056 224,1984,0 224,1985,0 224,1986,0 224,1987,0 224,1988,0 -224,1989,2.799552071668533e-4 +224,1989,2.887169419101514e-4 224,1990,0 224,1991,0 224,1992,0 @@ -15095,20 +15095,20 @@ rgn_id,year,pressure_score 224,1995,0 224,1996,0 224,1997,0 -224,1998,2.799552071668533e-4 -224,1999,5.599104143337066e-4 +224,1998,2.887169419101514e-4 +224,1999,5.774338838203028e-4 224,2000,0 224,2001,0 224,2002,0 224,2003,0 -224,2004,2.799552071668533e-4 -224,2005,0.0011198208286674132 -224,2006,0.003919372900335946 -224,2007,5.599104143337066e-4 +224,2004,2.887169419101514e-4 +224,2005,0.0011548677676406056 +224,2006,0.00404203718674212 +224,2007,5.774338838203028e-4 224,2008,0 -224,2009,2.799552071668533e-4 +224,2009,2.887169419101514e-4 224,2010,0 -224,2011,5.599104143337066e-4 +224,2011,5.774338838203028e-4 224,2012,0 224,2013,0 224,2014,0 @@ -15312,25 +15312,25 @@ rgn_id,year,pressure_score 231,1996,0 231,1997,0 231,1998,0 -231,1999,2.799552071668533e-4 -231,2000,2.799552071668533e-4 -231,2001,2.799552071668533e-4 -231,2002,2.799552071668533e-4 -231,2003,2.799552071668533e-4 -231,2004,2.799552071668533e-4 -231,2005,2.799552071668533e-4 -231,2006,2.799552071668533e-4 -231,2007,2.799552071668533e-4 -231,2008,2.799552071668533e-4 -231,2009,2.799552071668533e-4 -231,2010,2.799552071668533e-4 -231,2011,2.799552071668533e-4 -231,2012,2.799552071668533e-4 -231,2013,2.799552071668533e-4 -231,2014,2.799552071668533e-4 -231,2015,2.799552071668533e-4 -231,2016,2.799552071668533e-4 -231,2017,2.799552071668533e-4 +231,1999,2.887169419101514e-4 +231,2000,2.887169419101514e-4 +231,2001,2.887169419101514e-4 +231,2002,2.887169419101514e-4 +231,2003,2.887169419101514e-4 +231,2004,2.887169419101514e-4 +231,2005,2.887169419101514e-4 +231,2006,2.887169419101514e-4 +231,2007,2.887169419101514e-4 +231,2008,2.887169419101514e-4 +231,2009,2.887169419101514e-4 +231,2010,2.887169419101514e-4 +231,2011,2.887169419101514e-4 +231,2012,2.887169419101514e-4 +231,2013,2.887169419101514e-4 +231,2014,2.887169419101514e-4 +231,2015,2.887169419101514e-4 +231,2016,2.887169419101514e-4 +231,2017,2.887169419101514e-4 231,2018,0 231,2019,0 231,2020,0 diff --git a/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.Rmd b/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.Rmd index e25f0957..e932ba2c 100644 --- a/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.Rmd +++ b/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.Rmd @@ -213,8 +213,8 @@ sum <- long %>% ## Assign country names to OHI regions ```{r, eval=FALSE} - sum <- sum %>% + ohicore::split_regions() %>% dplyr::mutate(country = as.character(country)) %>% dplyr::mutate(country = ifelse(stringr::str_detect(country, "C.*te d'Ivoire"), "Ivory Coast", country)) diff --git a/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.html b/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.html new file mode 100644 index 00000000..00b2a762 --- /dev/null +++ b/globalprep/prs_targetedharvest/v2023/targetedharvest_dataprep.html @@ -0,0 +1,2049 @@ + + + + + + + + + + + + + + +OHI 2023 - Targeted harvest pressure + + + + + + + + + + + + + + +

+ohi logo
OHI Science | Citation policy +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+
+
+
+
+ +
+ + + + + + + +

REFERENCE +RMD FILE

+
+

1 Summary

+

This analysis converts FAO capture production data into the OHI 2022 +targeted harvest pressure data.

+
+
+

2 Updates from previous +assessment

+

2023 - One more year of data, 2021 Small fixes to how N data is +handled in fao_fxn.R Delete unused/not relevant code

+
+
+
+

3 Data Source

+
http://www.fao.org/fishery/statistics/software/fishstatj/en#downlApp
+ Release date: March 2021  
+

FAO Global Capture Production Quantity 1950_2019
+Information: http://www.fao.org/fishery/statistics/global-capture-production/en

+

Reference: United Nations, 2021. FAO Fisheries & +Aquaculture - Fishery Statistical Collections - Global Capture +Production [WWW Document]. URL http://www.fao.org/fishery/statistics/global-capture-production/en +(accessed 4.29.21).

+

Downloaded: April 25, 2022

+

Description: Quantity (tonnes) of fisheries capture +for each county, species, year.

+

Time range: 1950-2020

+
+
+
+

4 Methods

+
+

4.1 Setup

+
# load libraries, set directories
+library(ohicore)  #devtools::install_github('ohi-science/ohicore@dev')
+library(tidyverse)
+library(plotly)
+library(here)
+library(janitor)
+
+### Load FAO-specific user-defined functions
+source(here('workflow/R/fao_fxn.R')) # function for cleaning FAO files (not combined into common.R like most other functions have been at this point)
+source(here('workflow/R/common.R')) # directory locations
+
+version_year <- 2023
+latest_data_yr <- version_year - 2
+
+
+

4.2 Read in the raw +data

+

This includes the FAO capture production data and a list of the +“target” species.

+
## FAO capture production data - all columns being parsed as characters and producing error in one column, but not sure which? (read.csv might help avoid this error?)
+# The last row is not relevant to the data and is removed which is what the warning is referring to
+fis_fao_raw <- read_csv(
+  file.path(dir_M, 'git-annex/globalprep/_raw_data/FAO_capture',
+            paste0('d', version_year),
+            paste0('Global_capture_production_Quantity_1950-', latest_data_yr,'.csv'))
+  # , na = "..."
+)
+
+# List of species included as cetaceans or marine turtles (this probably won't change at all)
+sp2grp <- read_csv(here('globalprep', 'prs_targetedharvest', paste0('v', version_year), 'raw', 'species2group.csv')) %>%
+  dplyr::filter(incl_excl == 'include') %>%
+  dplyr::select(target, species); head(sp2grp)
+
+
+

4.3 Clean the FAO +data

+
# Rename columns and remove unit column
+fao_clean <- fis_fao_raw %>% 
+  dplyr::rename(country = "Country (Name)",
+                species = "ASFIS species (Name)",
+                area = "FAO major fishing area (Name)") %>%
+  dplyr::select(-c("Unit (Name)", "Unit")) %>% #  added removing Unit also
+  dplyr::rename_with(~ base::gsub("\\[", "", .)) %>% 
+  dplyr::rename_with(~ base::gsub("\\]", "", .))
+
+
+# Pivot_longer by year and value to expand and make each line a single observation for country, species and year (tidy data!)
+fao_clean <- fao_clean %>%
+  tidyr::pivot_longer(cols = -(1:3), names_to = 'year', values_to = 'value', values_drop_na = T) %>%
+    fao_clean_data_new() 
+
+fao_clean <- fao_clean %>%
+  dplyr::mutate(
+    species = as.character(species),
+    species = stringr::str_replace_all(
+      string = species, 
+      pattern = "Henslow.*s swimming crab", 
+      replacement = "Henslow's swimming crab")
+    )
+
+
+

4.4 Identify the target +species

+

This analysis only includes target species. The warning messages need +to be checked and, if necessary, changes should be made to the +raw/species2group.csv

+
# check for discrepancies in species list
+spgroups <-  sort(as.character(unique(fao_clean$species))) # species groups in FAO data 
+groups <-  c('turtle', 'whale', 'dolphin', 'porpoise') # seals and sea lions removed from vector (pinnipeds no longer included) 
+
+# Going through FAO data species and seeing if they're in our master list of species
+## Looking to see if we need to add species that have changed name
+for (group in groups) {# group='dolphin'
+  possibles <- spgroups[grep(group, spgroups)]
+  d_missing_l <-  setdiff(possibles, sp2grp$species)
+  if (length(d_missing_l) > 0){
+    cat(sprintf("\nMISSING in the lookup the following species in target='%s'.\n    %s\n", 
+                group, paste(d_missing_l, collapse='\n    ')))
+  }
+}
+
+# check for species in lookup not found in data
+l_missing_d <-  setdiff(sp2grp$species, spgroups)
+if (length(l_missing_d) > 0){
+  cat(sprintf('\nMISSING: These species in the lookup are not found in the FAO data \n'))
+  print(l_missing_d)
+}
+
+#### v2023
+# MISSING in the lookup the following species in target='turtle'.
+#     Chinese softshell turtle - not a marine turtle
+#     Eastern Pacific green turtle - added this to sp2grp to include
+#     River and lake turtles nei - not a marine turtle
+# 
+# MISSING in the lookup the following species in target='whale'.
+#     Creek whaler - shark, not a whale
+#     Velvet whalefish - fish, not a whale
+# 
+# MISSING in the lookup the following species in target='dolphin'.
+#     Common dolphinfish - fish not a cetacean
+#     Pompano dolphinfish - fish not a cetacean
+
+## filter data to include only target species ----
+target_spp <- fao_clean %>%
+  dplyr::filter(species %in% sp2grp$species) # this goes from 2384 spp in FAO list to just 72
+
+unique(target_spp$area) # confirm these are all marine regions
+unique(fao_clean$species) # 2384 species
+
+
+

4.5 Summarize data

+
# pivot wider to expand years
+wide <- target_spp %>%
+  tidyr::pivot_wider(names_from = year, values_from = value) %>%
+  dplyr::left_join(sp2grp, by='species'); head(wide) 
+
+# pivot longer long by target
+long <- wide %>%
+  dplyr::select(-area) %>%
+  tidyr::pivot_longer(cols = c(-country, -species, -target),
+                      names_to = 'year',
+                      values_to = 'value',
+                      values_drop_na = T) %>%
+  dplyr::mutate(year = as.integer(as.character(year))) %>%
+  dplyr::arrange(country, target, year); head(long)
+
+
+# explore Japan[210] as an example
+japan <- long %>% 
+  dplyr::group_by(country, target, year) %>%
+  dplyr::summarize(value = sum(value)) %>% 
+  dplyr::filter(country == 'Japan', target == 'cetacean', year >= 2000) 
+
+# summarize totals per region per year - number of individual animals from each spp group? 
+sum <- long %>%
+  dplyr::group_by(country, year) %>%
+  dplyr::summarize(value = sum(value, na.rm=TRUE)) %>%
+  dplyr::filter(value != 0) %>%
+  dplyr::ungroup(); head(sum) 
+
+
+

4.6 Assign country names +to OHI regions

+
sum <- sum %>%
+  ohicore::split_regions() %>%
+  dplyr::mutate(country = as.character(country)) %>%
+  dplyr::mutate(country = ifelse(stringr::str_detect(country, "C.*te d'Ivoire"), "Ivory Coast", country))
+
+### Function to convert to OHI region ID
+m_sum_rgn <- name_2_rgn(df_in = sum, 
+                       fld_name='country', 
+                       flds_unique=c('year'))
+
+# Check out duplicates based on error message from previous step
+dplyr::filter(m_sum_rgn, country %in% c("Guadeloupe", "Martinique")) 
+# this is ok, we report these two together, so this will be fixed with the summarize in the next step 
+
+# They will be summed:
+m_sum_rgn <- m_sum_rgn %>%
+  dplyr::group_by(rgn_id, rgn_name, year) %>%
+  dplyr::summarize(value = sum(value)) %>%
+  dplyr::ungroup()
+
+
+

4.7 Scale the data and +save files

+

Data is rescaled by dividing by the 95th quantile of values across +all regions from 2011 to 2020 (most recent year of FAO data).

+
target_harvest <- m_sum_rgn %>%
+  dplyr::mutate(
+    quant_95 = quantile(value[year %in% 2011:latest_data_yr], 0.95, na.rm = TRUE),
+    score = value / quant_95,
+    score = ifelse(score > 1, 1, score)) %>%
+  dplyr::select(rgn_id, year, pressure_score = score) %>%
+  dplyr::arrange(rgn_id, year); head(target_harvest); summary(target_harvest)
+  
+# v2021 quant_95 = 3409.4
+# v2022 quant_95 = 3450.05
+# v2023 quant_95 = 3572
+
+# any regions that did not have a catch should have score = 0 
+rgns <-  rgn_master %>%
+  dplyr::filter(rgn_typ == "eez") %>%
+  dplyr::select(rgn_id = rgn_id_2013) %>%
+  dplyr::filter(rgn_id < 255) %>%
+  base::unique() %>%
+  dplyr::arrange(rgn_id)
+
+# Add year; for v2023, min year is 1950, and max year is 2021
+rgns <- expand.grid(rgn_id = rgns$rgn_id, year = min(target_harvest$year):max(target_harvest$year))
+
+# Change NAs in pressure_score column to 0s
+target_harvest <-  rgns %>%
+  dplyr::left_join(target_harvest) %>%
+  dplyr::mutate(pressure_score = ifelse(is.na(pressure_score), 0, pressure_score)) %>%
+  dplyr::arrange(rgn_id); head(target_harvest); summary(target_harvest)
+
+# Write target_harvest to "fao_targeted.csv" in output folder
+write_csv(
+  target_harvest, 
+  here('globalprep', 'prs_targetedharvest', paste0('v', version_year), 'output', 'fao_targeted.csv')
+)
+
+# Create gapfill dataframe
+target_harvest_gf <- target_harvest %>%
+  dplyr::mutate(gapfill = 0) %>%
+  dplyr::select(rgn_id, year, gapfill)
+# all zeroes for gapfill column; nothing being gapfilled but need to have a record 
+
+# Write target_harvest_gf to "fao_targeted_gf.csv" in output folder
+write_csv(
+  target_harvest_gf,
+  here('globalprep', 'prs_targetedharvest', paste0('v', version_year), 'output', 'fao_targeted_gf.csv')
+)
+
+
+

4.8 Data check

+

The data from last year and this year should be the same unless there +were changes to underlying FAO data or the master species list.

+

In this case, all of the regions looked very similar.

+
# pull just 2020 data from target_harvest df, since its the most recent year in common
+common_year <- 2020
+
+new <- readr::read_csv(here("globalprep", "prs_targetedharvest", paste0('v', version_year), "output", "fao_targeted.csv")) %>%
+  dplyr::filter(year == common_year)
+
+old <- readr::read_csv(here("globalprep", "prs_targetedharvest", paste0('v', version_year - 1), "output", "fao_targeted.csv")) %>%
+  dplyr::filter(year == common_year) %>%
+  dplyr::select(rgn_id, year, pressure_score_old = pressure_score) %>%
+  dplyr::left_join(new, by = c("rgn_id", "year"))
+
+# Compare pressure_score between last year and this year's assessments
+compare_plot <- ggplot(data = old, aes(x = pressure_score_old, y = pressure_score, label = rgn_id)) +
+  geom_point() +
+  geom_abline(color = "red")
+
+plot(compare_plot)
+ggplotly(compare_plot)
+
+### v2022: Explore outliers
+
+### explore United States [163]
+# out_country <- "United States of America"
+### explore Indonesia [216]
+out_country <- "Indonesia"
+
+outlier_country <- long %>% 
+  dplyr::group_by(country, target, year) %>%
+  dplyr::summarize(value = sum(value)) %>% 
+  dplyr::filter(country == out_country, year >= 2000) 
+
+
+region_data() ## read in regions 
+
+
+new <- readr::read_csv(here("globalprep", "prs_targetedharvest", paste0('v', version_year), "output", "fao_targeted.csv")) %>% 
+  dplyr::filter(year == 2021) %>%
+  dplyr::select(-year)
+
+old <- readr::read_csv(here("globalprep", "prs_targetedharvest", paste0('v', version_year - 1), "output", "fao_targeted.csv")) %>%
+  dplyr::filter(year == common_year) %>%
+  dplyr::select(-year) %>%
+  dplyr::select(rgn_id, pressure_score_2020 = pressure_score) %>%
+  dplyr::left_join(new, by = c("rgn_id")) %>%
+  dplyr::rename(pressure_score_2021 = pressure_score) %>%
+  left_join(rgns_eez)
+  
+
+# Compare pressure_score between last year and this year's assessments
+compare_plot <- ggplot(data = old, aes(x = pressure_score_2020, y = pressure_score_2021, label = rgn_name)) +
+  geom_point() +
+  geom_abline(color = "red")
+
+plot(compare_plot)
+ggplotly(compare_plot)
+
+
+ + + +
+
+ +
+ + + + + + + + + + + + + + + + +