Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 2.59 KB

File metadata and controls

67 lines (43 loc) · 2.59 KB

Contents

gtpc_modeled.pkl

A pickle file (via cloudpickle) containing an instance of the GeneralizedTPC class defined in TPC_params_latitudinal_generalization.ipynb, which represents a generalized thermal performance curve (as defined by Deutsch et al. 2008), parameterized latitudinally via modeled relationships. The class in this file is instantiated using models derived in TPC_params_latitudinal_generalization.ipynb. To use:

import cloudpickle
import numpy as np

with open("gtpc_modeled.pkl", 'rb') as f:
    gtpc = cloudpickle.load(f)
    
latitude = 45
_tpc = gtpc.getLatitudinalTPC(latitude)
_topt, _tmin, _tmax = gtpc.getTPCParameters(latitude)
T = np.linspace(10, 40)
T_e = _tpc(T)

Producing latitudinal models of $T_\mathrm{min}$, $T_\mathrm{max}$, and $T_\mathrm{opt}$.

An initial investigation into the latitudinal patterns present in phytoplankton TPC parameters.

(Outdated) An initial investigation into thermal tolerance exceedances for fish species in the Pinsky database.

[phytoplankton-sst.ipynb](./phytoplankton-sst.ipynb)

(Outdated) Proof-of-concept figures for the phytoplankton thermal tolerance idea.