Datasets:
File size: 44,433 Bytes
e26f91e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 | import os
import glob
import math
import numpy as np
import pandas as pd
import shapely
import geopandas as gpd
from geopandas.tools import sjoin
from shapely.geometry import Polygon, Point, box
from shapely.ops import linemerge, unary_union, polygonize
#---------------------------------------------------------------------------------------------------------------------
#High Level Helper Functions
#---------------------------------------------------------------------------------------------------------------------
def create_grid(MPA, grid_shape="hexagon", grid_size_deg=1.):
"""
This function make a grid gdf with the shape choose by the user
input(s):
MPA <shapely polygon>: region of interest or the total project area
grid_size_m <int>: size of the grid in degrees
grid_shape <str>: either "square" or "hexagon"
output(s):
gdf <geopandas dataframe>: containts at least a geometry colum and a unique grid_id
"""
# Slightly displace the minimum and maximum values of the feature extent by creating a buffer
# This decreases likelihood that a feature will fall directly on a cell boundary (in between two cells)
# Buffer is projection dependent (due to units)
#feature = feature.buffer(20) #This is increase the boundary by 20 degrees!
# print("no buffer")
# Get extent of buffered input feature
min_x, min_y, max_x, max_y = MPA.total_bounds
# Create empty list to hold individual cells that will make up the grid
cells_list = []
# Create grid of squares if specified
if grid_shape in ["square", "rectangle", "box"]:
# Adapted from https://james-brennan.github.io/posts/fast_gridding_geopandas/
# Create and iterate through list of x values that will define column positions with specified side length
for x in np.arange(min_x - grid_size_deg, max_x + grid_size_deg, grid_size_deg):
# Create and iterate through list of y values that will define row positions with specified side length
for y in np.arange(min_y - grid_size_deg, max_y + grid_size_deg, grid_size_deg):
# Create a box with specified side length and append to list
cells_list.append(box(x, y, x + grid_size_deg, y + grid_size_deg))
# Otherwise, create grid of hexagons
elif grid_shape == "hexagon":
# Set horizontal displacement that will define column positions with specified side length (based on normal hexagon)
x_step = 1.5 * grid_size_deg
# Set vertical displacement that will define row positions with specified side length (based on normal hexagon)
# This is the distance between the centers of two hexagons stacked on top of each other (vertically)
y_step = math.sqrt(3) * grid_size_deg
# Get apothem (distance between center and midpoint of a side, based on normal hexagon)
apothem = (math.sqrt(3) * grid_size_deg / 2)
# Set column number
column_number = 0
# Create and iterate through list of x values that will define column positions with vertical displacement
for x in np.arange(min_x, max_x + x_step, x_step):
# Create and iterate through list of y values that will define column positions with horizontal displacement
for y in np.arange(min_y, max_y + y_step, y_step):
# Create hexagon with specified side length
hexagon = [[x + math.cos(math.radians(angle)) * grid_size_deg, y + math.sin(math.radians(angle)) * grid_size_deg] for angle in range(0, 360, 60)]
# Append hexagon to list
cells_list.append(Polygon(hexagon))
# Check if column number is even
if column_number % 2 == 0:
# If even, expand minimum and maximum y values by apothem value to vertically displace next row
# Expand values so as to not miss any features near the feature extent
min_y -= apothem
max_y += apothem
# Else, odd
else:
# Revert minimum and maximum y values back to original
min_y += apothem
max_y -= apothem
# Increase column number by 1
column_number += 1
# Else, raise error
else:
raise Exception("Specify a rectangle or hexagon as the grid shape.")
# Create grid from list of cells
grid = gpd.GeoDataFrame(cells_list, columns = ['geometry'], crs = 4326)
# Create a column that assigns each grid a number
grid["Grid_ID"] = np.arange(len(grid))
# Return grid
return grid
#---------------------------------------------------------------------------------------------------------------------
def count_overlapping_geometries(gdf):
#main source: https://gis.stackexchange.com/questions/387773/count-overlapping-features-using-geopandas
"""
This function calculates the intersections of a list of polygons in a region
input(s):
gdf <geopandas dataframe>: contains at least a geometry colum with the polygons to count
output(s):
gdf <geopandas dataframe>: containts at least a geometry colum, a unique grid_id and intersection accounting
"""
#Get the name of the column containing the geometries
geom_col = gdf.geometry.name
# Setting up a single piece that will be split later
input_parts = [gdf.unary_union.buffer(0)]
# Finding all the "cutting" boundaries. Note: if the input GDF has
# MultiPolygons, it will treat each of the geometry's parts as individual
# pieces.
cutting_boundaries = []
for i, row in gdf.iterrows():
this_row_geom = row[geom_col]
this_row_boundary = this_row_geom.boundary
if this_row_boundary.type[:len('multi')].lower() == 'multi':
cutting_boundaries = cutting_boundaries + list(this_row_boundary.geoms)
else:
cutting_boundaries.append(this_row_boundary)
# Split the big input geometry using each and every cutting boundary
for boundary in cutting_boundaries:
splitting_results = []
for j,part in enumerate(input_parts):
new_parts = list(shapely.ops.split(part, boundary).geoms)
splitting_results = splitting_results + new_parts
input_parts = splitting_results
# After generating all of the split pieces, create a new GeoDataFrame
new_gdf = gpd.GeoDataFrame({'id':range(len(splitting_results)),
geom_col:splitting_results,
},
crs=gdf.crs,
geometry=geom_col)
# Find the new centroids.
new_gdf['geom_centroid'] = new_gdf.centroid
# Starting the count at zero
new_gdf['count_intersections'] = 0
# For each of the `new_gdf`'s rows, find how many overlapping features
# there are from the input GDF.
for i,row in new_gdf.iterrows():
new_gdf.loc[i,'count_intersections'] = gdf.intersects(row['geom_centroid']).astype(int).sum()
pass
# Dropping the column containing the centroids
new_gdf = new_gdf.drop(columns=['geom_centroid'])[['id','count_intersections',geom_col]]
return new_gdf
#---------------------------------------------------------------------------------------------------------------------
#This function calculates the sum of all values of an interest colum of overlapping geometries
def map_algebra(gdf, gdf_col_name, operation):
"""
This function calculates the sum of all values of an interest colum of overlapping geometries
Input:
gdf <geopandas dataframe>: consists of polygons
gdf_col_name <string>: column name that has the value that we want to apply the algebra operation
operation <string>: algebra operation
: options ('sum','mean','max','min','prod')
Output:
gdf <geopandas dataframe>: consists of polygons with a new colum with a summation of interest values
"""
#main source: https://stackoverflow.com/questions/65073549/combine-and-sum-values-of-overlapping-polygons-in-geopandas
#The explode() method converts each element of the specified column(s) into a row
#This is useful if there are multipolygons
new_gdf = gdf.explode('geometry')
new_gdf['new_colum'] = new_gdf[str(gdf_col_name)]
#convert all polygons to lines and perform union
lines = unary_union(linemerge([geom.exterior for geom in new_gdf.geometry]))
#convert again to (smaller) intersecting polygons and to geodataframe
polygons = list(polygonize(lines))
intersects = gpd.GeoDataFrame({'geometry': polygons}, crs="EPSG:4326")
#to fix invalid geometries
intersects['geometry'] = intersects['geometry'].buffer(0)
#Perform sjoin with original geoframe to get overlapping polygons.
#Afterwards group per intersecting polygon to perform (arbitrary) aggregation
if operation == 'sum':
intersects['algebra_overlaps'] = (intersects
.sjoin(new_gdf, predicate='within')
.reset_index()
.groupby(['level_0', 'index_right0'])
.head(1)
.groupby('level_0')
.new_colum.sum())
elif operation == 'mean':
intersects['algebra_overlaps'] = (intersects
.sjoin(new_gdf, predicate='within')
.reset_index()
.groupby(['level_0', 'index_right0'])
.head(1)
.groupby('level_0')
.new_colum.mean())
elif operation == 'max':
intersects['algebra_overlaps'] = (intersects
.sjoin(new_gdf, predicate='within')
.reset_index()
.groupby(['level_0', 'index_right0'])
.head(1)
.groupby('level_0')
.new_colum.max())
elif operation == 'min':
intersects['algebra_overlaps'] = (intersects
.sjoin(new_gdf, predicate='within')
.reset_index()
.groupby(['level_0', 'index_right0'])
.head(1)
.groupby('level_0')
.new_colum.min())
elif operation == 'prod':
intersects['algebra_overlaps'] = (intersects
.sjoin(new_gdf, predicate='within')
.reset_index()
.groupby(['level_0', 'index_right0'])
.head(1)
.groupby('level_0')
.new_colum.prod())
else:
raise ValueError("Unsupported operation: {}".format(operation))
return intersects
#---------------------------------------------------------------------------------------------------------------------
def Clip_EFG(MPA, path_EFG):
"""
Inputs:
- MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
- path_EFG <list>: consists of a list of EFG polygons' paths to be reference internally
Outputs:
- gdf <geopandas dataframe>: consists of a list of EFG polygons cut with respect to MPA
"""
Geometry = []
if not isinstance(path_EFG, (np.ndarray,list)):
raise TypeError("Need an array with the paths where the EFG layers are located")
if isinstance(path_EFG, (np.ndarray,list)):
for x in range(len(path_EFG)):
#Reading each EFG
gdf = gpd.read_file(str(path_EFG[x]))
#Choosing the crs
gdf = gdf.set_crs(epsg=4326, allow_override=True)
#We want only the polygons within our study place
clip = gpd.clip(gdf, MPA)
clip = clip.reset_index()
#Selecting the 'geometry' column
geo = clip.geometry
Geometry.append(geo)
joined = gpd.GeoDataFrame(pd.concat(Geometry, ignore_index=True))
return joined
#---------------------------------------------------------------------------------------------------------------------
#Indices and metrics functions
#---------------------------------------------------------------------------------------------------------------------
def shannon(MPA, gdf, grid_gdf):
"""
This function calculates the shannon index using the "indivudualCount" colum of the OBIS data as species abundance information
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: Marine Proteted Area of interest
gdf <geopandas dataframe>: contains at least the name of the species, their abundance and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys),
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
gdf_col_name <string>: corresponds to the name of the abundance information column in the gdf
source <str>: if the data is from OBIS or from IUCN
output(s):
gdf <geopandas dataframe>: with an additional column ('shannon') containing the calculation of that index per grid
: or geometry
"""
#Join in a gdf all the geometries within MPA
gdf = gpd.clip(gdf.set_crs(epsg=4326, allow_override=True), MPA.set_crs(epsg=4326, allow_override=True))
#Spatial join of gdf and grid_gdf
pointInPolys = sjoin(gdf, grid_gdf, how='inner')
# 'individualCount' refers to the number of individual organisms observed or sampled
# for a particular species at a particular location and time.
pointInPolys = pointInPolys.dropna(subset='individualCount')
pointInPolys['individualCount'] = pointInPolys['individualCount'].astype(float).astype(int)
#To calculate the total number of species
N = pd.DataFrame()
N['N'] = pointInPolys.groupby('Grid_ID').apply(lambda x: x['individualCount'].sum())
new = pd.merge(pointInPolys, N, on='Grid_ID')
#Calculate the Shanoon index with the information available
new['pi'] = new['individualCount']/new['N']
new['shannon'] = (-1)*new['pi']*np.log(new['pi'])
new = new.dissolve(by='Grid_ID', aggfunc={'shannon': 'sum'})
new = new.drop(['geometry'], axis = 1)
merge = new.merge(grid_gdf, how='right', on='Grid_ID')
grid_gdf = gpd.GeoDataFrame(merge)
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
def simpson(MPA, gdf, grid_gdf):
"""
This function calculates the shannon index using the "indivudualCount" colum of the OBIS data as species abundance information
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: Marine Proteted Area of interest
gdf <geopandas dataframe>: contains at least the name of the species, their abundance and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys),
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
gdf_col_name <string>: corresponds to the name of the abundance information column in the gdf
source <str>: if the data is from OBIS or from IUCN
output(s):
gdf <geopandas dataframe>: with an additional columns ('simpson') containing the calculation of that index per grid
: or geometry
"""
#Join in a gdf all the geometries within MPA
gdf = gpd.clip(gdf.set_crs(epsg=4326, allow_override=True), MPA.set_crs(epsg=4326, allow_override=True))
#Spatial join of gdf and grid_gdf
pointInPolys = sjoin(gdf, grid_gdf, how='inner')
# 'individualCount' refers to the number of individual organisms observed or sampled
# for a particular species at a particular location and time.
pointInPolys = pointInPolys.dropna(subset='individualCount')
pointInPolys['individualCount'] = pointInPolys['individualCount'].astype(float).astype(int)
#To calculate the total number of species
N = pd.DataFrame()
N['N'] = pointInPolys.groupby('Grid_ID').apply(lambda x: x['individualCount'].sum())
#where num = n(n-1)
pointInPolys['num'] = pointInPolys['individualCount']*(pointInPolys['individualCount']-1)
#Merge the datasets based on the Grid_ID
new = pd.merge(pointInPolys, N, on='Grid_ID')
#Calculate the Simpson index
new['simpson'] = 1-((new['num'])/(new['N']*(new['N']-1)))
#Sum all the value in a grid
new = new.dissolve(by='Grid_ID', aggfunc={'simpson': 'sum'})
#Delete the geometries from OBIS data
new = new.drop(['geometry'], axis = 1)
#Merge with the grid_dgf
merge = new.merge(grid_gdf, how='right', on='Grid_ID')
grid_gdf = gpd.GeoDataFrame(merge)
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
def species_richness(MPA, gdf, grid_gdf):
"""
This fucntion calculates the maximum number of species that we can find in a specific area/grid from two ways:
1. using IUCN RedList data: count the overlapping geometries of each species
2. using OBIS data: count the total number of species' ocurrences or species' observations
inputs:
MPA <shapely polygon in CRS WGS84:EPSG 4326>: Marine Proteted Area of interest
df <geopandas dataframe>: contains at least the name of the species and the distribution polygons of each of them
gdf <geopandas dataframe>: contains at least the name of the species and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys),
ii) points denoting the observations of each species - repeated observations for the same species
source <str>: if the data is from OBIS or from IUCN
output(s):
gdf <geopandas dataframe>: with an additional column ('species_richness') containing the calculation of this factor
: per grid or geometry
"""
#Join in a gdf all the geometries within MPA
gdf = gpd.clip(gdf.set_crs(epsg=4326, allow_override=True), MPA.set_crs(epsg=4326, allow_override=True))
if isinstance(gdf.geometry[1], shapely.geometry.point.Point):
#Spatial join of gdf and grid_gdf
pointInPolys = sjoin(gdf, grid_gdf, how='right')
new = pointInPolys.groupby(['Grid_ID']).size().reset_index(name='count')
#Added count colum in the grid geodataframe
grid_gdf['species_richness'] = new['count']
grid_gdf = gpd.GeoDataFrame(grid_gdf)
elif not isinstance(gdf.geometry[1], shapely.geometry.point.Point):
#Count the number of overlapping geometries
overlap = count_overlapping_geometries(gdf)
#To count how many geometries are in each grid
merged = gpd.sjoin(overlap, grid_gdf, how='left')
merged['n_species']= overlap['count_intersections']
# Compute stats per grid cell
#aggfunc: assigne the max value of all the geometries that dissolve
dissolve = merged.dissolve(by="index_right", aggfunc={'n_species': 'max'})
# put this into cell
grid_gdf.loc[dissolve.index,'species_richness'] = dissolve.n_species.values
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
def endemism(MPA, gdf, grid_gdf):
"""
This function calculates a distribution ratio per species, using the global distribution polygon from the IUCN RedList
and the species distribution within the MPA to deduce a endemic ratio per each species
inputs:
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species and the distribution polygons of each of them
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts atleast a geometry column and a unique grid_id
output(s):
gdf <geopandas dataframe>: with an additional column ('endemism') containing the calculation of this factor per grid
: or geometry
"""
#Polygons of species distribution to be clipped to MPA
df2 = gpd.clip(gdf.set_crs(epsg=4326, allow_override=True), MPA.set_crs(epsg=4326, allow_override=True))
#Calculate the portion of the area covered by each species in MPA with respect to its global distribution
dist_ratio2 = np.round(df2.area/gdf.area, decimals=4, out=None)
#Calculate the log of that ratio
log_dist2 = 1/(-np.log2(dist_ratio2)+0.1)
#Add these values into the new gdf
df2["DistRatio2"] = dist_ratio2
df2["log_dist2"] = log_dist2
#Function that calculates the sum of the individual log_dist2 values of all species of overlapping geometries
overlap_endemic_v = map_algebra(df2, 'log_dist2', 'sum')
#Merged the log_dist2 values of overlapping geometries with the grid gdf
merged = gpd.sjoin(overlap_endemic_v, grid_gdf, how='left')
merged['n_value']= overlap_endemic_v['algebra_overlaps']
# Compute stats per grid cell
#aggfunc: sum the values of all the geometries that dissolve
dissolve = merged.dissolve(by="index_right", aggfunc={'n_value': 'sum'})
#Put this into cell
grid_gdf.loc[dissolve.index, 'endemism'] = dissolve.n_value.values
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
def wege(MPA, gdf, grid_gdf):
"""
This function calculates the Weighted Endemism including Global Endangerment (WEGE) index as it is described in
[Farooq et al. (2020)](https://onlinelibrary.wiley.com/doi/full/10.1111/ddi.13148).
inputs:
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species, the risk category of Red List IUCN
:and the distribution polygons of each of them
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts atleast a geometry column and a unique grid_id
output(s):
gdf <geopandas dataframe>: with an additional column ('wege') containing the calculation of this factor per grid
: or geometry
"""
def extinction_risk(cat: str = None) -> float:
"""
Calculates extinction risk (ER) for species following Farooq et al. (2020)
We assign probability of extinction for each IUCN category using extinction probabilities
from Table S2 in supplemental material of Davis et al (2018).
Here we use use IUCN50 values, same as Farooq et al. (2020).
Extinction risk for data deficiient (DD) category is assigned the vulnerable (VU) probability,
see Bland et al. (2015) for explanation.
Args:
cat (str): IUCN category
- DD = Data Deficient
- LC = Least Concern
- NT = Near Threatened
- VU = Vulnerable
- EN = Endangered
- CR = Critically Endangered
- EW = Extinct in the wild
- EX = Extinct
Returns:
float: probability of extinction
References:
Bland et al. (2015) "Predicting the conservation status of data-deficient species"
https://doi.org/10.1111/cobi.12372
Davis et al. (2018) "Mammal diversity will take millions of years to recover from the current biodiversity crisis"
https://doi.org/10.1073/pnas.1804906115
Farooq et al. (2020) "WEGE: A new metric for ranking locations for biodiversity conservation"
https://doi.org/10.1111/ddi.13148
"""
cat_to_risk = dict(
DD=0.0513, # using Bland et al. (2015) assumption
LC=0.0009,
NT=0.0071,
VU=0.0513,
EN=0.4276,
CR=0.9688,
EW=1.0,
EX=1.0
)
if cat_to_risk.get(cat) is None:
raise ValueError("Invalid value for 'cat', expected one of 'DD', 'LC', 'NT', 'VU', 'EN', 'CR', EW', 'EX'")
return cat_to_risk.get(cat)
#To extract the MPA area value
MPA_area = MPA.area[0]
#Polygons of species distribution to be clipped to MPA
df = gpd.clip(gdf.set_crs(epsg=4326, allow_override=True), MPA)
#Calculate the portion of the area covered by each species in MPA with respect to the MPA area
#This is called "Weighted Endemism" factor
we = np.round(df.area/MPA_area, decimals=4, out=None)
sq_we = we**(0.5)
#Add this information into the new gdf
df['we'] = we
df['sq_we'] = sq_we
# replaces long RedList name with two-letter code
long_to_short = {
'Data Deficient':'DD',
'Least Concern':'LC',
'Near Threatened':'NT',
'Vulnerable':'VU',
'Endangered':'EN',
'Critically Endangered':'CR',
'Extinct In The Wild':'EW',
'Extinct':'EX'
}
df['redlistCat'] = df['redlistCat'].replace(long_to_short)
#List of extinction probabilities for each species
df['ER'] = [extinction_risk(cat) for cat in df['redlistCat']]
#Calculate the "WEGE factor" individually
df['wege_i'] = df['sq_we']*df['ER']
#Function that calculates the sum of the individual wege_i values of all species of overlapping geometries
overlap_wege_v = map_algebra(df, 'wege_i', 'sum')
#Merged the log_dist2 values of overlapping geometries with the grid gdf
merged = gpd.sjoin(overlap_wege_v, grid_gdf, how='left')
merged['n_value']= overlap_wege_v['algebra_overlaps']
# Compute stats per grid cell
#aggfunc: sum the values of all the geometries that dissolve
dissolve = merged.dissolve(by="index_right", aggfunc={'n_value': 'sum'})
#Put this into cell
grid_gdf.loc[dissolve.index, 'wege'] = dissolve.n_value.values
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
def habitat_accounting(MPA, grid_gdf, path_EFG):
"""
This fucntion calculates the maximum number of EFG from the IUCN Global Ecosystem Typology that we can find in a specific area/grid
inputs:
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
list_EFG <list>: consist in a list with path location of each EFG file
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts atleast a geometry column and a unique grid_id
output(s):
gdf <geopandas dataframe>: with an additional column ('habitat_survey') containing the calculation of this factor
: per grid or geometry
"""
#Join in a gdf all the geometries within ROI
joined = Clip_EFG(MPA, path_EFG)
#Count the number of overlappong geometries from joined gdf
overlap_geo = count_overlapping_geometries(joined)
#This is to count how many geometries are in each grid
merged = gpd.sjoin(overlap_geo, grid_gdf, how='left')
merged['n_habitats']= overlap_geo['count_intersections']
# Compute stats per grid cell
#aggfunc: select the max value of all the geometries that dissolve
dissolve = merged.dissolve(by="index_right", aggfunc={'n_habitats': 'max'})
# put this into cell
grid_gdf.loc[dissolve.index, 'habitat_accounting'] = dissolve.n_habitats.values
return grid_gdf
#---------------------------------------------------------------------------------------------------------------------
#Modulating Factor Functions
#---------------------------------------------------------------------------------------------------------------------
def mbu_biodiversity_score(MPA, gdf, grid_gdf, source, crs_transformation_kms):
"""
This functions combines the Shannon Index and Simpson Index to calculate a Biodiversity Score per grid or
given area and converts these numbers into MBUs.
It calls internally the Shannon and Simpson functions to do the calculations
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: Marine Proteted Area of interest
gdf <geopandas dataframe>: contains at least the name of the species and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys),
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
source <str>: if the data is from OBIS or from IUCN
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional column ('mbu_biodiversity_score') containing the calculation of MBUs with this
:factor information per grid or geometry
"""
if source == 'OBIS':
#Shannon Index calculation
df1 = shannon(MPA, gdf, grid_gdf)
#Simpson Index calculation
df2 = simpson(MPA, gdf, grid_gdf)
#Normalization factor
Norm_factor1 = df1['shannon']/df1['shannon'].max()
Norm_factor2 = df2['simpson']/df2['simpson'].max()
#Convert area from degrees to square kilometers
df1['area_sqkm'] = (df1.to_crs(crs=crs_transformation_kms).area)*10**(-6)
#Add colums
#df['shannon'] = df1['shannon']
df1['simpson'] = df2['simpson']
#Calculate the MBUS from this MF
df1['mbu_biodiversity_score'] = Norm_factor1*df1['area_sqkm'] + Norm_factor2*df1['area_sqkm']
elif source == 'IUCN':
print('The Biodiversity Score - Modulating Factor is not available to IUCN data')
else:
raise ValueError("Unsupported source: {}".format(source))
return df1
#---------------------------------------------------------------------------------------------------------------------
def mbu_species_richness(MPA, gdf, grid_gdf, crs_transformation_kms):
"""
This function calculates the amount of MBUs from the species richness metric and converts these
numbers into MBUs in a given area in sqd kms.
It calls internally the Species Richness function to do the calculations
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys),
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
source <str>: if the data is from OBIS or from IUCN
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional column ('mbu_species_richness') containing the calculation of MBUs with this
: factor information per grid or geometry
"""
#Species Richness calculation
df1 = species_richness(MPA, gdf, grid_gdf)
#Normalization factor
Norm_factor1 = df1['species_richness']/df1['species_richness'].max()
#Convert area from degrees to square kilometers
df1['area_sqkm'] = (df1.to_crs(crs=crs_transformation_kms).area)*10**(-6)
#Calculate the MBUS from this MF
df1['mbu_species_richness'] = Norm_factor1*df1['area_sqkm']
return df1
#---------------------------------------------------------------------------------------------------------------------
def mbu_endemism(MPA, gdf, grid_gdf, source, crs_transformation_kms):
"""
This function calculates the amount of MBUs from the Endemic index and converts these numbers into
MBUs in a given area in sqd kms.
It calls internally the Endemism function to do the calculations
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species, their abundance and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys)
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
source <str>: if the data is from OBIS or from IUCN
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional column ('mbu_endemism') containing the calculation of MBUs with this
:factor information per grid or geometry
"""
if source == 'OBIS':
print('Endemic Modulating Factor is not available to OBIS data')
#Calculate the MBUS from this MF
df1['mbu_endemism'] = 0
elif source == 'IUCN':
#Endemic factor calculation
df1 = endemism(MPA, gdf, grid_gdf)
#Normalization factor
Norm_factor1 = df1['endemism']/df1['endemism'].max()
#Convert area from degrees to square kilometers
df1['area_sqkm'] = (df1.to_crs(crs=crs_transformation_kms).area)*10**(-6)
#Calculate the MBUS from this MF
df1['mbu_endemism'] = Norm_factor1*df1['area_sqkm']
else:
raise ValueError("Unsupported source: {}".format(source))
return df1
#---------------------------------------------------------------------------------------------------------------------
def mbu_wege(MPA, gdf, grid_gdf, source, crs_transformation_kms):
"""
This function calculates the amount of MBUs from the WEGE index and converts these numbers into MBUs in a
given area in sqd kms.
It calls internally the WEGE function to do the calculations
input(s):
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species, their abundance and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys)
ii) points denoting the observations of each species - repeated observations for the same species
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
source <str>: if the data is from OBIS or from IUCN
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional column ('mbu_wege') containing the calculation of MBUs with this
:factor information per grid or geometry
"""
if source == 'OBIS':
print('WEGE Modulating Factor is not available to OBIS data')
#Calculate the MBUS from this MF
df1['mbu_endemism'] = 0
elif source == 'IUCN':
#Wege factor calculation
df1 = wege(MPA, gdf, grid_gdf)
#Normalization factor
Norm_factor1 = df1['wege']/df1['wege'].max()
#Convert area from degrees to square kilometers
df1['area_sqkm'] = (df1.to_crs(crs=crs_transformation_kms).area)*10**(-6)
#Calculate the MBUS from this MF
df1['mbu_wege'] = Norm_factor1*df1['area_sqkm']
else:
raise ValueError("Unsupported source: {}".format(source))
return df1
#---------------------------------------------------------------------------------------------------------------------
def mbu_habitats_survey(MPA, grid_gdf, path_EFG, crs_transformation_kms):
"""
This function calculates the amount of MBUs from the Habitats Survey calculation and converts these numbers into MBUs in
a given area in sqd kms.
It calls internally the habitats Survey function to do the calculations
MPA <shapely polygon in CRS WGS84:EPSG 4326>: region of interest or the total project area
path_EFG <list>: consist in a list with path location of each EFG file
grid_gdf <geopandas dataframe>: consists of polygons of grids typically generated by the gridding function
: containts at least a geometry column and a unique grid_id
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional column ('mbu_habitats_survey') containing the calculation of MBUs with this
:factor information per grid or geometry
"""
#Wege factor calculation
df1 = habitat_accounting(MPA, grid_gdf, path_EFG)
#Normalization factor
Norm_factor1 = df1['habitat_accounting']/df1['habitat_accounting'].max()
#Convert area from degrees to square kilometers
df1['area_sqkm'] = (df1.to_crs(crs=crs_transformation_kms).area)*10**(-6)
#Calculate the MBUS from this MF
df1['mbu_habitats_survey'] = Norm_factor1*df1['area_sqkm']
return df1
#---------------------------------------------------------------------------------------------------------------------
#General MBU function
#---------------------------------------------------------------------------------------------------------------------
def give_mbu_score(modulating_factor_names, MPA, gdf, grid_shape, grid_size_deg, path_EFG, source, crs_transformation_kms):
"""
input(s):
modulating_factor_names: list of names of the modulating factors, e.g. ["species_richness", "habitats_survey"]
modulating_factor_names:
- biodiversity_score
- species_richness
- endemism
- wege
- habitats_survey
MPA <shapely polygon>: region of interest or the total project area
gdf <geopandas dataframe>: contains at least the name of the species, their abundance and either
i) the distribution polygons of each of them or (presumbaly from IUCN or local surveys)
ii) points denoting the observations of each species - repeated observations for
the same species
grid_size_deg <int>: size of the grid in degress. Minimum values are enforced
: if grid_size_deg = 0: it means there are no grids
grid_shape <str>: either "square" or "hexagonal"
path_EFG <list>: consist in a list with path location of each EFG file
source <str>: if the data is from OBIS or from IUCN
crs_transformation_kms: coordinate reference system transformation applied to the MPA in meters
output(s):
gdf <geopandas dataframe>: with an additional columns with the MBUs from each MF chosen and the Total_Number_MBUs
:per grid or geometry
"""
if not isinstance(modulating_factor_names, (np.ndarray, list)):
print('A list of modulating factors to calculate MBUs is needed')
elif isinstance(modulating_factor_names, (np.ndarray, list)):
grid = create_grid(MPA, grid_shape, grid_size_deg)
if 'biodiversity_score' in modulating_factor_names:
if source == 'OBIS':
grid['mbu_biodiversity_score'] = mbu_biodiversity_score(MPA, gdf, grid, source, crs_transformation_kms)['mbu_biodiversity_score']
elif source == 'IUCN':
grid['mbu_biodiversity_score'] = 0
if 'species_richness' in modulating_factor_names:
grid['mbu_species_richness'] = mbu_species_richness(MPA, gdf, grid, crs_transformation_kms)['mbu_species_richness']
if 'endemism' in modulating_factor_names:
if source == 'OBIS':
grid['mbu_endemism'] = 0
elif source == 'IUCN':
grid['mbu_endemism'] = mbu_endemism(MPA, gdf, grid, source, crs_transformation_kms)['mbu_endemism']
if 'wege' in modulating_factor_names:
if source == 'OBIS':
grid['mbu_wege'] = 0
elif source == 'IUCN':
grid['mbu_wege'] = mbu_wege(MPA, gdf, grid, source, crs_transformation_kms)['mbu_wege']
if 'habitats_survey' in modulating_factor_names:
if not isinstance(path_EFG, np.ndarray):
grid['mbu_habitats_survey'] = 0
elif isinstance(path_EFG, np.ndarray):
grid['mbu_habitats_survey'] = mbu_habitats_survey(MPA, grid, path_EFG, crs_transformation_kms)['mbu_habitats_survey']
grid['Total_MBUs'] = grid['mbu_species_richness'] + grid['mbu_biodiversity_score'] + grid['mbu_endemism'] + grid['mbu_wege'] + grid['mbu_habitats_survey']
return grid |