gpt4 book ai didi

java - GeoTools WebMapServer GetMapRequest 问题

转载 作者:太空宇宙 更新时间:2023-11-04 06:10:59 24 4
gpt4 key购买 nike

我正在使用 GeoTools 12.2 开发 java 类库项目。

首先,我正在使用 this guide 开发 GeoTools WMS 模块。我失败的一点是执行获取 map 请求,以便我可以获得功能文档和图层等。

我的 wms 网址 http://sampleserver1.arcgisonline.com/ArcGIS/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/WMSServer

它包含 3 层(州、河流、城市)

我正在使用结构来获取 map 操作,如下所示。

GetMapRequest getMapRequest = wms.createGetMapRequest();//wms is my WebMapServer object

getMapRequest.addLayer(tempLayer);//tempLayer contains states layer

GetMapResponse response = (GetMapResponse) wms.issueRequest(getMapRequest);

BufferedImage image = ImageIO.read(response.getInputStream());

我还尝试了指南中的其他方法来执行 GetMapRequest 但我无法成功,总是将 NullPointerException 获取到 BufferedImage 对象。

您有什么建议?提前致谢。

最佳答案

您需要为您的请求设置更多参数,WMS getMapResponse 不为其中几个参数提供任何默认值(因为它们对于您的请求/ map 来说是唯一的)。所以你至少需要以下内容:

private BufferedImage getLayer(Layer l) {
GetMapRequest getMapRequest = wms.createGetMapRequest();
getMapRequest.addLayer(l);
getMapRequest.setBBox(l.getEnvelope(DefaultGeographicCRS.WGS84));
getMapRequest.setDimensions(200, 400);
getMapRequest.setFormat("image/png");
getMapRequest.setSRS("CRS:84");
System.out.println(getMapRequest.getFinalURL());
try {
GetMapResponse response = wms.issueRequest(getMapRequest);
BufferedImage image = ImageIO.read(response.getInputStream());
return image;
} catch (ServiceException | IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}

}

通常,为了避免获得空图像,您可以对响应进行一些错误检查:

     if (response.getContentType().equalsIgnoreCase("image/png")) {
BufferedImage image = ImageIO.read(response.getInputStream());
return image;
} else {
StringWriter writer = new StringWriter();
IOUtils.copy(response.getInputStream(), writer);
String error = writer.toString();
System.out.println(error);
return null;
}

这会给你一个 XML 编码的错误,告诉你出了什么问题:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ServiceExceptionReport version="1.3.0"
xmlns="http://www.opengis.net/ogc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/ogc http://schemas.opengis.net/wms/1.3.0/exceptions_1_3_0.xsd">
<ServiceException code="InvalidFormat">
Parameter 'bbox' can not be empty.
</ServiceException>
</ServiceExceptionReport>

关于java - GeoTools WebMapServer GetMapRequest 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28742336/

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