FishBeltTransect
Bases: BaseSummary
Source code in seasnake/summaries/fish_belt.py
observations(project_id)
Retrieves a project's Fish Belt Transect observations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project_id |
str
|
The ID of the project for which to fetch Fish Belt Transect observations. |
required |
Returns:
Type | Description |
---|---|
DataFrame
|
DataFrame |
Examples:
from seasnake import MermaidAuth, FishBeltTransect
auth = MermaidAuth()
fish_belt = FishBeltTransect(token=auth.get_token())
project_id = "AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE"
print(fish_belt.observations(project_id))
Source code in seasnake/summaries/fish_belt.py
sample_events(project_id)
Retrieves a project's Fish Belt Transect observations aggregated by sample events.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project_id |
str
|
The ID of the project for which to fetch Fish Belt Transect sample events. |
required |
Returns:
Type | Description |
---|---|
DataFrame
|
DataFrame |
Examples:
from seasnake import MermaidAuth, FishBeltTransect
auth = MermaidAuth()
fish_belt = FishBeltTransect(token=auth.get_token())
project_id = "AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE"
print(fish_belt.sample_events(project_id))
Source code in seasnake/summaries/fish_belt.py
sample_units(project_id)
Retrieves a project's Fish Belt Transect observations aggregated by sample units.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project_id |
str
|
The ID of the project for which to fetch Fish Belt Transect sample units. |
required |
Returns:
Type | Description |
---|---|
DataFrame
|
DataFrame |
Examples:
from seasnake import MermaidAuth, FishBeltTransect
auth = MermaidAuth()
fish_belt = FishBeltTransect(token=auth.get_token())
project_id = "AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE"
print(fish_belt.sample_units(project_id))