如何在 ncWMS thredds 垂直截面中获取轮廓以获取 getVerticalSection 请求
How to get Contours in ncWMS thredds vertical section for getVerticalSection request
如何为 getVerticalSection 请求获取 ncWMS thredds 垂直剖面中的轮廓。我需要为使用 thredds 5.0.0 的项目获取一些带有轮廓的 png,我找不到它的任何 API 参数。
THREDDS 数据服务器 (TDS) v5.x 使用 edal-java
2.x 堆栈,因此与 ncwms1.2
略有不同。我想你在新版本中想要的是一个 GetTransect
请求,也许是这样的:
REQUEST=GetTransect&LAYERS=<layer>&CRS=<crs>&LINESTRING=<lat/lon pairs>&FORMAT=<format>&TIME=<iso time string>&COLORSCALERANGE=<range>&NUMCOLORBANDS=<num_bands>&PALETTE=<palette>
GetTransect
请求在TDS中ncwms2服务返回的GetCapabilities
文档中有描述。 Here 是使用 University of Readings ncwms2 服务器的示例:
请注意,TDS v5 中的新 ncwms2 服务器是实验性的,并不是 TDS 和 ncwms2 之间的所有内容都已连接,因此您的请求可能无法正常工作。此外,TDS v5 刚刚发布第一个测试版,因此可能会弹出与新 ncwms 服务器无关的错误。
如何为 getVerticalSection 请求获取 ncWMS thredds 垂直剖面中的轮廓。我需要为使用 thredds 5.0.0 的项目获取一些带有轮廓的 png,我找不到它的任何 API 参数。
THREDDS 数据服务器 (TDS) v5.x 使用 edal-java
2.x 堆栈,因此与 ncwms1.2
略有不同。我想你在新版本中想要的是一个 GetTransect
请求,也许是这样的:
REQUEST=GetTransect&LAYERS=<layer>&CRS=<crs>&LINESTRING=<lat/lon pairs>&FORMAT=<format>&TIME=<iso time string>&COLORSCALERANGE=<range>&NUMCOLORBANDS=<num_bands>&PALETTE=<palette>
GetTransect
请求在TDS中ncwms2服务返回的GetCapabilities
文档中有描述。 Here 是使用 University of Readings ncwms2 服务器的示例:
请注意,TDS v5 中的新 ncwms2 服务器是实验性的,并不是 TDS 和 ncwms2 之间的所有内容都已连接,因此您的请求可能无法正常工作。此外,TDS v5 刚刚发布第一个测试版,因此可能会弹出与新 ncwms 服务器无关的错误。