Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ message: 'To cite package "GeoPressureR" in publications use:'
type: software
license: GPL-3.0-or-later
title: 'GeoPressureR: Global Positioning by Atmospheric Pressure'
version: 3.5.3
version: 3.5.4
doi: 10.5281/zenodo.7754457
abstract: R package to determine the position and trajectory of a bird based on light-weight
data-logger measuring at lease atmospheric pressure.
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: GeoPressureR
Title: Global Positioning by Atmospheric Pressure
Version: 3.5.3
Version: 3.5.4
Authors@R: c(
person("Raphaël", "Nussbaumer", , "rafnuss@gmail.com", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0002-8185-1020")),
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export(tag_label_stap)
export(tag_label_write)
export(tag_set_map)
export(tag_stap_daily)
export(tag_status)
export(time2plottime)
export(trainset)
export(ts2mat)
Expand Down
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# GeoPressureR v3.5.4

## Main

- [Improve `graph_add_wind()` memory use for large graphs](https://github.com/GeoPressure/GeoPressureR/commit/0084fb61) by computing graph-scale wind speed directly in chunks instead of materializing detailed per-time-step wind output.
- [Improve `graph_create()` memory use](https://github.com/GeoPressure/GeoPressureR/commit/36f534b9) by releasing intermediate graph chunks while building the final graph vectors.
- [Document and export `tag_status()`](https://github.com/GeoPressure/GeoPressureR/commit/86dbd393) for companion packages.

## Minor

- Deprecate `edge_add_wind(return_averaged_variable)`; `edge_add_wind()` now always returns detailed edge/time/variable values.
- Deprecate `graph_add_wind(variable)`; `graph_add_wind()` now always uses `c("u", "v")`.
- Update GeoPressureViz wind handling to compute averaged edge wind from detailed `edge_add_wind()` output.
- Add example usage to `mask_water()` documentation.

**Full Changelog**: <https://github.com/GeoPressure/GeoPressureR/compare/v3.5.3...v3.5.4>

# GeoPressureR v3.5.3

## Main
Expand Down
Loading
Loading