Releases: 16EAGLE/basemaps
Releases · 16EAGLE/basemaps
0.0.8
basemaps 0.0.8
New map service Maptiler, minor improvements
Features:
- added Maptiler support (
map_service="maptiler") for many new map types from https://maptiler.com (free token required), including"aquarelle","backdrop","basic","bright","dataviz","landscape","ocean","outdoor","satellite","streets","toner","topo"and"winter"(seeget_maptypes())
Bugs:
- Resolves 404 HTTP error when using
map_service="osm_stamen",map_type="watercolor"(#31, #30, thanks to @pushing-boulders for the PR) - fixes an issue remarked in #29 that produces to much verbosity
0.0.7
basemaps 0.0.7
Minor improvements
Changes:
- maps rendered using
basemap_ggplotorbasemap_gglayeror objects plotted usinggg_rasterare now displayed with all pixels by default (full resolution,maxpixelsargument) instead of rendering in a lower resolution (previous default:500000). - switched from using
aes_stringtoaesingg_rasterdue to deprectation of the function inggplot2.
0.0.6
basemaps 0.0.6
Major improvements, adding new map services
Bugs:
- Fixing an issue with maps appearing blurred/of low resolution when using
basemap_ggplotorbasemap_gglayer. Maps should now show up with consistent resolutions across plot/viewing methods. - Fixing a bug from upstream causing maps to not get mosaiced correctly
- Fixing
grDevicesdisplay bug whenNAs are in map imagery
Changes:
gg_rasternow acceptsinterpolate, a logical argument to control smoothing of the plotted raster.- added Stadia Maps support for
osm_stamenmaps: Due to changes by Stamen, you now need a map token from https://stadiamaps.com (free registration) for Stamen maps. - added Stadia Maps as new map service
osm_stadia(requires map token from https://stadiamaps.com)
0.0.5
basemaps 0.0.5
Added gg_raster and basemap_terra
Features:
- added
basemap_terrato output maps as classSpatRasterfrom packageterra - added
gg_raster, a function that plots objects of classRasterLayer,RasterBrickor{RasterStackasggplot2
Changes:
- included
terraas Imports dependency - replaced internal calls to
rasterfunctions with equivalent functions of its successorterra - moved
rasterfrom Imports to Suggests, as it has been internally replaced by its successorterra - moved
starsfrom Imports to Suggests - changed default value of argument
classtobasemap()toplotfor being more user-friendly to users not familiar with spatial classes
0.0.4
basemaps 0.0.4
Updated help, bug fixes.
Bugs:
- dropped defunct/not maintained tile servers (OSM) from map services list
- fixing a bug (
"dimensions of e1 and e2 do not match") when trying to build a map frommap_service="mapbox"andmap_type="terrain"with newer versions ofstars - added a handling to fix a plotting bug for cases in which maps returned by tile servers (for whatever reasons) consist of only a single value (e.g. 0) for the given query extent (#9)
- fixed a bug placing cached maps in the wrong directory when
map_diris defined by the user (#11) - cached maps stored in other directories than the currently set
map_dirare now disregarded to avoid path errors when switching map directories during a session (#11)
Features:
- added
flush_cache, a function that flushes the cache and thereby removes all previously queried and/or composited products from the map directories (temporary or user-defined using the argumentmap_dir) used during the current session.