openairmaps (development version)
These are items associated with the development version of openairmaps.
Breaking changes
BREAKING: The arguments of
addPolarMarkers()
have been rejigged to move “data” after “pollutant”, owing to the new use ofleaflet::getMapData()
. (#45)BREAKING: The default arguments of some
polarMap()
-family functions have changed from, e.g.,NULL
to"free"
or"fixed"
. (#34)
New features
-
Several “limit” arguments can now take one of three options: “fixed” (which forces all markers to share scales), “free” (which allows them to use different scales), or a numeric vector to define the scales. (#34) These arguments and their defaults include:
-
polarMap()
:upper
(fixed);limits
(free) -
annulusMap()
:limits
(free) -
freqMap()
:breaks
(free) -
percentileMap()
:intervals
(fixed)
-
Added
searchNetwork()
, which allows users to find local air quality monitoring sites by specifying a target latitude and longitude. Function arguments allow the site metadata to be subset (for example, by site type, pollutants measured, or distance from the target).Added
convertPostcode()
, which converts a valid UK postcode to a latitude/longitude pair. This is intended to be used withsearchNetwork()
.The “data” argument of
addPolarMarkers()
andaddTrajPaths()
and both the “before” and “after” arguments ofaddPolarDiffMarkers()
now default toleaflet::getMapData(map)
. This makes their use less verbose when creating multiple polar plots with the same underlying data, which will likely be a common use-case. (#45)networkMap()
popups now contain links to the associated network websites. For example, the popup for London Marylebone Road innetworkMap("aurn")
now contains a link to https://uk-air.defra.gov.uk/networks/site-info?site_id=MY1. All networks are supported with the exception of “europe”. (#39)addPolarMarkers()
andaddPolarDiffMarkers()
now have all of the “options” arguments ofleaflet::addMarkers()
. This means that, for example, polar markers can be clustered (https://leafletjs.com/reference.html#marker). (#38)The
polarMap()
family andnetworkMap()
provider
argument can now take a named vector. The names will be used in the layer control menu, iflength(provider) > 1
. (#42)
openairmaps 0.8.0
CRAN release: 2023-03-31
This is a minor release adding a range of quality of life features, adding two new experimental functions, and fixing a few bugs.
New features
-
trajMapStatic()
andtrajLevelMapStatic()
have been added as two new experimental functions to provide ggplot2 equivalents ofopenair::trajPlot()
andopenair::trajLevel()
. (#28)- These are experimental as the long term place for these functions is uncertain; there will definitely be need for a ggplot2 incarnation of the trajectory plotting functions, but whether they will sit in openair,
{ggopenair}
or openairmaps and what they will be named is not clear.
- These are experimental as the long term place for these functions is uncertain; there will definitely be need for a ggplot2 incarnation of the trajectory plotting functions, but whether they will sit in openair,
The
control
andfacet
arguments of all polar marker mapping functions (static and interactive) and trajectory mapping functions are now passed toopenair::cutData()
.The
popup
argument of all interactive polar marker mapping functions can now take a vector of column names. If more than one column is provided, it is automatically passed tobuildPopup()
using its default values.trajLevelMap()
now has thecontrol
argument, which maps directly onto thetype
argument ofopenair::trajLevel()
. Like othercontrol
arguments elsewhere in openairmaps, this creates a “layer control” menu.networkMap()
now uses different coloured markers for different networks. If more than one network is specified, anddraw.legend
is set toTRUE
, a legend will also be drawn for quick identification of different data sources. (#30)Deprecations are now managed by the lifecycle package. This currently only applies to the
type
argument.
Bug fixes
Fixed issues where multiple
addPolarMarkers()
chained together would all show the same plot.Fixed issue where
...
andpollutant
weren’t being passed toaddPolarMarkers()
. (#27)Fixed issue in
trajMap()
caused by recent updates to dplyr and forcats.-
Fixed issue where
polarMapStatic()
and others would turn factor facet levels into characters. Fixed issue where
polarMapStatic()
and others would error when trying to draw a legend.
openairmaps 0.7.0
CRAN release: 2023-02-09
This is a minor release containing several important new features that expand the scope of the package. This also comes with several minor breaking changes to improve consistency within openairmaps and with openair.
Breaking changes
-
BREAKING: The
fig.width
,fig.height
,iconHeight
andiconWidth
arguments have been replaced withd.fig
andd.icon
. There are two main justifications behind this:This ensures consistency across all of openairmaps, making it easier to switch between the static and HTML map types.
Polar markers are almost always going to be circular (i.e., width = height) so having one argument will streamline things. If users wish to have non-circular markers, a vector of length two in the form
c(width, height)
will provide the same functionality.
BREAKING: The arguments in
addPolarMarkers()
have been put in a more sensible order, leading withdata
,pollutant
andfun
.BREAKING: The
date
argument fromnetworkMap()
has been replaced byyear
. (#26)
New features
-
Added “static” equivalents of all of the polar marker maps written in ggplot2. While interactive HTML maps are preferred, the static equivalents may be more appropriate for, e.g., academic publications. (#19)
The ggplot2 functions can be identified by “Static” being appended to the function name. For example,
polarMap()
is the leaflet polar plot map, whereaspolarMapStatic()
is the ggplot2 equivalent.Currently, “static” versions of the trajectory maps are served by
openair::trajPlot()
andopenair::trajLevel()
, but there may be space in future to haveggmap
equivalents of these inopenairmaps
.
Added
diffMap()
anddiffMapStatic()
which are toopenair::polarDiff()
whatpolarMap()
andpolarMapStatic()
are toopenair::polarPlot()
(#17). Also addedaddPolarDiffMarkers()
, which is the equivalent ofaddPolarMarkers()
. (#25)Added
alpha
as an argument to all of the directional analysis polar mapping functions, not justpolarMap()
. (#14)Fixed
alpha
to work on both Windows and MacOS by forcing the use of the “cairo” device to save plots. (#14)Polar marker maps and
addPolarMarkers()
now show a progress bar when creating the markers takes more than a few seconds (most commonly inpolarMap()
andannulusMap()
, particularly with multiple pollutants/control groups).networkMap()
can now pass the newyear
option toimportMeta()
.
openairmaps 0.6.1
CRAN release: 2023-01-09
This is a patch release primarily to fix a few bugs in openairmaps, and implement a new default colour scheme after a recent openair update.
New features
- Functions now use Google’s “turbo” colour palette rather than “jet” by default. More about this palette and the advantages of using it over “jet” can be read at https://ai.googleblog.com/2019/08/turbo-improved-rainbow-colormap-for.html.
Bug fixes
Fixed issue with polar marker maps (e.g.,
polarMap()
) and the genericaddPolarMarkers()
function where lat/lon info in the Southern Hemisphere would misalign markers. Hat tip to Deanna Tuxford and James for noticing this issue. (#18)Fixed an issue with
networkMap()
wherecontrol = "variable"
would fail to show all pollutants.
openairmaps 0.6.0
CRAN release: 2022-11-28
This is a minor release, mainly focusing on enhancing the ability for polar markers to have shared colour scales, but also incorporating new features for network visualisation.
New features
All directional analysis maps can now have their limits provided (can be “limits”, “breaks”, “percentiles”, etc., depending on function). This was always possible through
...
, but it is now explicitly listed as an option. (#12)If limits are defined in a directional analysis function, a shared legend will now be drawn at the top-right of the map. This functionality can be disabled by setting
draw.legend
to FALSE. (#12)Added the
buildPopup()
function, which allows users to easily construct HTML popups for use with the “popup” argument of directional analysis maps (orleaflet
maps more widely).The default options for fig.width and fig.height are now
3.5
rather than4
. This appears to remove some visual artefacts and makes the axis labels more legible.networkMap()
now supports multiple sources. For example, usingsource = c("aurn", "saqn")
will show both the AURN and SAQN on one map. This may be useful if users are interested in air quality in a specific region of the UK (e.g., users may wish to locate AURN, AQE and locally managed sites near to a given urban centre). (#16)networkMap()
now supportssource = "local"
.Multiple basemap providers can now be used with
networkMap()
.networkMap()
,trajMap()
and all polar directional analysis maps have gained thecollapse.control
argument, which controls whether the control menu starts collapsed or not. It defaults toFALSE
, which means the control menu is not collapsed.All documentation has been improved; function parameters are more consistent between functions and arguments passed to
openair
via...
are now explicitly listed.
Bug fixes
- The “alpha” option has been removed for all directional analysis functions except
polarMap()
as it only ever worked forpolarMap()
.
openairmaps 0.5.1
CRAN release: 2022-10-20
This is a patch release designed to fix a major bug in v0.5.0.
openairmaps 0.5.0
CRAN release: 2022-10-19
This is a minor release centred around the addition of the control
argument, which allows for arbitrary columns to be used in “layer control” menus.
Breaking changes
All functions now use latitude and longitude to distinguish between site types. Therefore, “type” is now deprecated. Maps using the old system will still render, but popups will not be displayed. For most users, to restore previous site labels simply rewrite
type = "site"
aspopup = "site"
. (#10)The default values for “pollutant” have all been removed. Any users relying on this default should update their code to explicitly state
pollutant = "nox"
.
New features
All functions now possess the “control” argument, which allows users to create a “layer control” menu with any arbitrary column. Appropriate columns may be those produced using
openair::cutData()
,openair::splitByDate()
, or a user-defineddplyr::case_when()
/dplyr::if_else()
column transformation. (#9)All functions now possess the “popup” and “label” arguments, which control pop-up and hover-over labels, respectively. This allows users to define any popup or label column, even non-unique ones. For example, multiple sites can be labelled with identical site types. (#10)
All functions now try to guess the latitude/longitude column if not provided, similar to leaflet. (#10)
Updated many error messages and warnings to use cli and be broadly more descriptive.
openairmaps 0.4.3
CRAN release: 2022-09-13
This is a patch release adding a small number of refinements.
Breaking changes
polar_data
column names changed from “latitude” to “longitude” to “lat” and “lon” to reflect the defaults of thepolarMap()
family.trajMap()
andtrajLevelMap()
now use the argument names “latitude” and “longitude” to match those of thepolarMap()
family.
New features
-
trajLevelMap()
now contains thelat.inc
andlon.inc
arguments.
openairmaps 0.4.2
This is a patch release to fix a bug with trajLevelMap()
.
Bug fixes
-
trajLevelMap()
now works wherestatistic = "frequency"
without a “pollutant”.
openairmaps 0.4.1
This is the first CRAN release of openairmaps.
Features
-
There are currently three streams of functionality in
openairmaps
:networkMap()
visualises any of theopenair::importMeta()
networks.polarMap()
and family allow for any of theopenair
directional analysis plots to be used as leaflet markers.trajMap()
and family are leaflet equivalents toopenair::trajPlot()
andopenair::trajMap()
.
-
There are two main classes of functions:
*Map()
functions are easy-to-use functions which create leaflet maps from the ground-up. These are the most similar toopenair
functions.add*()
functions are more flexible and allow users to add layers to existing leaflet maps. These are designed to be similar to theleaflet
“add” functions likeaddMarkers()
.