Additional operations of GBIF data
Missing docstring.
Missing docstring for SimpleSDMLayers.longitudes(records::GBIF.GBIFRecords). Check Documenter's build log for details.
Missing docstring.
Missing docstring for SimpleSDMLayers.latitudes(records::GBIF.GBIFRecords). Check Documenter's build log for details.
SimpleSDMLayers.mask Function
mask(layer::SDMLayer, template::SDMLayer)Returns a copy of the first layer masked according to the second layer. See also mask!.
SimpleSDMLayers.mask(layer::L, feature::T) where {L<:Union{<:SDMLayer,Vector{<:SDMLayer}}, T <: Union{Feature, FeatureCollection, Polygon, MultiPolygon}}
Returns a copy of the layer by the polygon.
sourceSimpleSDMLayers.mask(occ::T, poly::P) where {T <: AbstractOccurrenceCollection, P<:Union{Polygon,MultiPolygon}}Returns a copy of the occurrences that are within the polygon.
sourceSimpleSDMLayers.mask! Function
mask!(layer::SDMLayer, template::SDMLayer)Updates the positions in the first layer to be those that have a value in the second layer.
sourceSimpleSDMLayers.mask!(layer::SDMLayer, poly::T) where T<:Union{Polygon,MultiPolygon}Turns off all the cells outside the polygon (or within holes in the polygon). This modifies the object.
source