gpt4 book ai didi

openlayers - 如何在地理服务器中使用 WPS 进程生成 MBtiles?

转载 作者:行者123 更新时间:2023-12-05 06:43:46 34 4
gpt4 key购买 nike

如何在geoserver中生成mbtiles?使用 openlayers 显示地理服务器层

例如像这样调用wms层

new OpenLayers.Layer.WMS("Kanpur", "http://localhost:8080/geoserver/wms", {
LAYERS: 'sample_data_old:sample',
STYLES: '',
format: 'image/jpeg',
tiled: false,
transparent: true,
tilesOrigin : map.maxExtent.left + ',' + map.maxExtent.bottom,
visibility:false
}, {
isBaseLayer: true
}
);

如何调用 wps 层来创建 mbtiles?

我的问题请引用此链接

http://docs.geoserver.org/stable/en/user/community/mbtiles/output.html

最佳答案

我在尝试获得与@renjith 相同的输出时遇到了这个问题

所以,这是我使用 GeoServer 2.19.4 生成 MBTiles 所做的

步骤:

  • 通过安装 GDAL 插件在 GeoServer 上启用 GDAL 原生库,请引用此链接:GeoServer-gdal
  • 通过安装 WPS 插件在 GeoServer 上启用 WPS,请引用此链接:GeoServer-WPS
  • 通过安装 MBTiles 源/插件在 GeoServer 上启用 MBTiles 读/写,请参阅此链接:GeoServer-MBTiles

Make sure to match plugins versions with your GeoServer instance version!

After successful installation of the above requirements, you should be able to generate MBTiles of your datasource.

使用 WPS 请求您的服务器

<?xml version="1.0" encoding="UTF-8"?>
<wps:Execute version="1.0.0" service="WPS"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.opengis.net/wps/1.0.0"
xmlns:wfs="http://www.opengis.net/wfs"
xmlns:wps="http://www.opengis.net/wps/1.0.0"
xmlns:ows="http://www.opengis.net/ows/1.1"
xmlns:gml="http://www.opengis.net/gml"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:wcs="http://www.opengis.net/wcs/1.1.1"
xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd">
<ows:Identifier>gs:MBTiles</ows:Identifier>
<wps:DataInputs>
<wps:Input>
<ows:Identifier>layers</ows:Identifier>
<wps:Data>
<wps:LiteralData>layerName</wps:LiteralData>
</wps:Data>
</wps:Input>
<wps:Input>
<ows:Identifier>format</ows:Identifier>
<wps:Data>
<wps:LiteralData>imageFormat</wps:LiteralData>
</wps:Data>
</wps:Input>
<wps:Input>
<ows:Identifier>boundingbox</ows:Identifier>
<wps:Data>
<wps:BoundingBoxData crs="layerCRS" dimensions="2">
<ows:LowerCorner>MinX MinY</ows:LowerCorner>
<ows:UpperCorner>MaxX MaxY</ows:UpperCorner>
</wps:BoundingBoxData>
</wps:Data>
</wps:Input>
<wps:Input>
<ows:Identifier>filename</ows:Identifier>
<wps:Data>
<wps:LiteralData>fileName</wps:LiteralData>
</wps:Data>
</wps:Input>
<wps:Input>
<ows:Identifier>minZoom</ows:Identifier>
<wps:Data>
<wps:LiteralData>minZoom</wps:LiteralData>
</wps:Data>
</wps:Input>
<wps:Input>
<ows:Identifier>maxZoom</ows:Identifier>
<wps:Data>
<wps:LiteralData>maxZoom</wps:LiteralData>
</wps:Data>
</wps:Input>
</wps:DataInputs>
<wps:ResponseForm>
<wps:RawDataOutput>
<ows:Identifier>outputFormat</ows:Identifier>
</wps:RawDataOutput>
</wps:ResponseForm>
</wps:Execute>

确保替换每个输入以满足您的需求!

  • layerName ==> workspace:layer
  • 图像格式 ==> png 或 jpeg
  • MinX MinY ==> 空格分隔值
  • MaxX MaxY ==> 空格分隔值
  • fileName ==> 输出文件名
  • minZoom ==> 包含最小缩放级别
  • maxZoom ==> 不包括最大缩放级别(如果值为 20,则只会生成 19 个缩放级别)
  • outputFormat ==> mbtiles

如果 map 服务受到保护,此请求可能需要基本身份验证,并将返回要下载的可用生成文件的 URL!

关于openlayers - 如何在地理服务器中使用 WPS 进程生成 MBtiles?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31941025/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com