【发布时间】:2016-01-24 23:01:05
【问题描述】:
我已经设置了一个 ncWMS 服务器,它将我的 netcdf 文件提供给 web 地图服务器。现在我想通过 R 传单包将 ncWMS 服务与我闪亮的 APP 集成:
显示示例代码没有问题,但总是得到空传单结果。
我的代码是:
图书馆(传单)
leaflet() %>%
addTiles() %>%
setView(133, -23, zoom = 4) %>%
addWMSTiles(
"https://croptsrv-cdc.it.csiro.au/ncWMS/wms",
layers = "fi/mint",
options = WMSTileOptions(
format = "image/png",
transparent = FALSE, version = "1.3.0",
CRS = 'CRS:84',
styles = 'boxfill/redblue'),
attribution = ""
)
这是ncWMS数据集功能的链接:
我玩过 URL 和选项,但仍然没有地图。
我应该如何使用传单显示我的 ncWMS 地图?感谢您的任何建议。
【问题讨论】: