AFAI API
These are the full docstrings for the AFAI subsection of Sargassum.jl.
Index
Sargassum.AFAI_DOWNLOADED_PATHS
Sargassum.SARGASSUM_DISTRIBUTION_PRECOMPUTED
Sargassum.VERTICES_NORTH_ATLANTIC
Sargassum.VERTICES_PACIFIC_PANAMA
Sargassum._SARGASSUM_DISTRIBUTION_PRECOMPUTED_LINKS
Sargassum.AFAI
Sargassum.AFAIParameters
Sargassum.SargassumDistribution
Sargassum.afai_to_distribution
Sargassum.clean_pacific!
Sargassum.coast_and_clouds!
Sargassum.distribution_to_nc
Sargassum.download_precomputed
Sargassum.download_raw_afai
Sargassum.pixel_classify!
Sargassum.pixel_unmix!
Sargassum.remove_raw_afai
Sargassum.remove_raw_afai
Sargassum.sargassum_distribution
Sargassum.update_afai_downloaded_paths!
Sargassum.update_sargassum_distribution_precomputed!
Downloading AFAI Data
Sargassum.AFAI_DOWNLOADED_PATHS Constant
const AFAI_DOWNLOADED_PATHS
A Dict
mapping (year, month)
pairs to the path of the downloaded data.
Examples
Obtain a list of all AFAI data that has ever been downloaded.
julia> keys(AFAI_DOWNLOADED_PATHS)
Read the metadata of the .nc file.
julia> using NetCDF # install this if you haven't already
julia> ncinfo(AFAI_DOWNLOADED_PATHS[(2018, 4)])
Sargassum.download_raw_afai Method
download_raw_afai(year::Integer, month_spec; force = false)
Download raw AFAI data from
https://cwcgom.aoml.noaa.gov/erddap/griddap/noaa_aoml_atlantic_oceanwatch_AFAI_7D.html
Four files are downloaded, one on the 7th, 14th, 21nd and 28th of each month, each of which are 7-day aggregates.
Refer to [AFAI_DOWNLOADED_PATHS
] for the current status of downloaded data.
Arguments
year
should be an integer equal to at least2017
(the first full year available).month_spec
can be one of the followingan integer between
1
and12
: download the data from the corresponding montha vector of integers each between
1
and12
: download the data from all of the corresponding monthsomitted: download the data for every month in the given year
Optional Arguments
force
: Iftrue
, download the data even if it has already been downloaded. Defaultfalse
.
Sargassum.remove_raw_afai Method
remove_raw_afai(year, month)
Remove the raw data file corresponding to (year, month)
and update AFAI_DOWNLOADED_PATHS
.
Does not throw an error if the data has not been downloaded.
Sargassum.remove_raw_afai Method
remove_raw_afai(; force = false)
Remove all raw data file corresponding to (year, month)
and update AFAI_DOWNLOADED_PATHS
.
Requires passing force = true
to work.
Sargassum.update_afai_downloaded_paths! Method
update_afai_downloaded_paths!()
Update AFAI_DOWNLOADED_PATHS
by reading _AFAI_RAW_SCRATCH
.
AFAI
Sargassum.AFAI Type
mutable struct AFAI{U, T, R}
A container for the AFAI data.
Fields
lon
: AVector
of longitudes.lat
: AVector
of latitudes.time
: AVector
ofDateTime
s.afai
: AnArray
of AFAI/Sargassum values of the formafai[lon, lat, time]
.coast
: ABitMatrix
of sizesize(afai)[1:2]
such thatcoast[i, j] = 1
when the point(lon[i], lat[j])
is on a coastline.clouds
: ABitArray
of sizesize(afai)
such thatclouds[i, j, t] = 1
when there is a cloud at(lon[i], lat[j])
and weekt
.classification
: ABitArray
of sizesize(afai)
such thatclouds[i, j, t] = 1
when there Sargassum at(lon[i], lat[j])
and weekt
.params
: AAFAIParameters
.
Constructor
AFAI(filename::String, params::AFAIParameters)
filename
is a NetCDF of the form name.nc
It is assumed that the file is obtained from the NOAA database:
https://cwcgom.aoml.noaa.gov/erddap/griddap/noaa_aoml_atlantic_oceanwatch_AFAI_7D.html
The fields coast
, clouds
and classification
are initialized with 0's by default. Use coast_and_clouds!
and pixel_classify!
to construct them fully.
Plotting
This object can be [viz](@ref)
.
Sargassum.AFAIParameters Type
struct AFAIParameters{U, T}
A container for the parameters required to process the AFAI data.
Fields
window_size_coast_mask
: AnInteger
giving the distance, in gridpoints, such that all gridpoints within that distance of the coastline are masked (removed.) Default:20
.window_size_median_filter
: AnInteger
giving the size, in gridpoints of the median filter applied to the data. Default:51
.threshold_median
: AReal
such that all median-filteredafai
values below it are considered to not contain Sargassum. Default:1.79e-4
.afai_U0
: AReal
giving the global upper limit onafai
values for Sargassum-containing pixels. Default:4.41e-2
.afai_L0
: AReal
giving the global lower limit onafai
values for Sargassum-containing pixels. Default:-8.77e-4
.lon_lat_bins_coverage
: ATuple{Integer, Integer}
of the form(lon_bins, lat_bins)
where the final coverage distribution is binned withlon_bins
horizontally andlat_bins
gridpoints vertically. Default(134, 64)
.distribution_quant
: AReal
giving the quantile below which bins are discarded in the final coverage distribution calculation. Default:0.85
.
Constructors
AFAIParameters(; params...)
Each field has a named kwarg.
SargassumDistribution
Sargassum.SargassumDistribution Type
struct SargassumDistribution{T, R}
A container for a gridded distribution of Sargassum.
Fields
lon
: A vector of longitudes.lat
: A vector of latitudes.time
: ADateTime
giving the month and year when the distribution was computed.coast
: ABitMatrix
of sizesize(sargassum)[1:2]
such thatcoast[i, j] = 1
when the point(lon[i], lat[j])
is on a coastline.clouds
: ABitArray
of sizesize(sargassum)
such thatclouds[i, j, t] = 1
when there is a cloud at(lon[i], lat[j])
and weekt
.sargassum
: AnArray
with dimensions(lon x lat x 4)
whose entries give the fractional coverage of Sargassum at each gridpoint and week of the month. Each value is expressed as a percentage of the total coverage in the entire grid in that month, that is,sargassum
is a probability distribution on the grid of longitudes, latitudes and weeks. Or, more simply put, we havesum(sargassum) == 1
.
Constructing from AFAI
SargassumDistribution(afai::AFAI)
In general, afai
should be processed with clean_pacific!
, coast_and_clouds!
, pixel_classify!
and pixel_unmix!
.
The data in afai
are binned according to the bin size defined by afai.params.lon_lat_bins_coverage
. For the clouds and coast, a bin is true
if its mean over all pixels is greater than 0.5.
Constructing from a NetCDF file
SargassumDistribution(infile::String)
A dictionary with entries of the form (year, month) => distribution
is returned.
Constructing manually
SargassumDistribution(; kwargs...)
Each field has a named kwarg. If coast
and clouds
are not provided, they are initialized using falses
.
Plotting
Sargassum.sargassum_distribution Function
sargassum_distribution(year, month_spec, outfile; params)
Write the SargassumDistribution
at year year
to the NetCDF file outfile
.
month_spec
can be one of the followingan integer between
1
and12
: download the data from the corresponding montha vector of integers each between
1
and12
: download the data from all of the corresponding monthsomitted: download the data for every month in the given year
This is the highest level function available and attempts to download the data automatically if it hasn't already been downloaded and run the full calculation.
Optional Arguments
params
: TheAFAIParameters
to use for each calculation.
Sargassum.distribution_to_nc Function
distribution_to_nc(distributions::Vector{<:SargassumDistribution}, outfile::String)
Write the vector of SargassumDistribution
s in distributions
to the NetCDF file named in outfile
. That is, outfile
should be of the form name.nc
.
distribution_to_nc(distribution::SargassumDistribution, outfile::String)
Write a single distribution as above.
Precomputed Sargassum distributions
Sargassum.SARGASSUM_DISTRIBUTION_PRECOMPUTED Constant
const SARGASSUM_DISTRIBUTION_PRECOMPUTED
A dictionary mapping years to SargassumDistribution
precomputed for that year using default AFAIParameters
.
Use download_precomputed()
to populate this dictionary.
Examples
Populate the dictionary
julia> download_precomputed()
Access the SargassumDistribution
from April, 2018.
julia> SARGASSUM_DISTRIBUTION_PRECOMPUTED[(2018, 4)]
See all available (year, month)
pairs.
julia> keys(SARGASSUM_DISTRIBUTION_PRECOMPUTED)
Sargassum._SARGASSUM_DISTRIBUTION_PRECOMPUTED_LINKS Constant
const _SARGASSUM_DISTRIBUTION_PRECOMPUTED_LINKS
A dictionary mapping years to the link where the precomputed SargassumDistribution
s can be downloaded for that year.
Sargassum.download_precomputed Method
download_precomputed()
Download SargassumDistribution
precomputed using default AFAIParameters
.
This overwrites all precomputed distributions.
Sargassum.update_sargassum_distribution_precomputed! Method
update_sargassum_distribution_precomputed!()
Update SARGASSUM_DISTRIBUTION_PRECOMPUTED
by reading _SARGASSUM_DISTRIBUTION_PRECOMPUTED_SCRATCH
.
Earth Polygons
Sargassum.VERTICES_NORTH_ATLANTIC Constant
const VERTICES_NORTH_ATLANTIC
An matrix of (x, y)
coordinates (each row is a new coordinate) such that the polygon defined by these coordinates contains the North Atlantic with longitudes in ~[-100, -30]
and latitudes in ~[5, 35]
.
Sargassum.VERTICES_PACIFIC_PANAMA Constant
const VERTICES_PACIFIC_PANAMA
An matrix of (x, y)
coordinates (each row is a new coordinate) such that the polygon defined by these coordinates contain the Pacific side of the Panama Canal. Used to remove Sargassum in this region.
Internal SargassumDistribution Calculations
Sargassum.clean_pacific! Function
clean_pacific!(afai; vertices)
Remove any Sargassum pixels that have crossed the Panama canal from afai.afai
; by default this is done by removing Sargassum from pixels whose centers are inside VERTICES_PACIFIC_PANAMA
.
Sargassum.coast_and_clouds! Function
coast_and_clouds!(afai; apply_coast)
Compute afai.coast
and afai.clouds
and update afai
in place.
Optional Arguments
apply_coast
: ABool
such that, iftrue
,afai.afai
is also updated to remove data on the coast. Defaulttrue
.
Sargassum.pixel_classify! Function
pixel_classify!(afai::AFAI; verbose::Bool = true)
Compute afai.classification
and update afai
in place.
This is accomplished in two steps. First, an Array
of the same size and eltype of afai.afai
is computed such that the value at each gridpoint is the median of all afai.afai
values in a window of size afai.params.window_size_median_filter
centered on that gridpoint. NaN
s are ignored when calculating the median. If every value in the window is NaN
, the value of afai_median
is also NaN
.
Then, the Sargassum-containing pixels are the entries of afai.afai - afai_median
that are at least as large as afai.params.threshold_median
.
Computing the median filter is parallelized but can take several minutes, hence the status is printed for each week. This can be turned off using the optional argument verbose
.
Sargassum.pixel_unmix! Function
pixel_unmix!(afai)
Update afai.afai
in place such that the value at each gridpoint is the percentage coverage of Sargassum in that pixel. The coverage is only computed at the pixels given by afai.classification
, and set to 0.0
elsewhere.
The coverage is computed as a linear interpolation between global maximum and minimum afai
values provided by afai.params.afai_U0
and afai.params.afai_L0
.
Sargassum.afai_to_distribution Function
afai_to_distribution(file::String, params::AFAIParameters)
Compute a SargassumDistribution
using the parameters params
from the raw data file file
.