gpt4 book ai didi

OpenLayers GeoRSS 解析 - 所有点都在彼此之上

转载 作者:行者123 更新时间:2023-12-04 06:00:28 24 4
gpt4 key购买 nike

我正在关注 OpenGeo 的 OpenLayers 教程,并且正在努力处理读取地震位置的 GeoRSS 编码 XML 文件的矢量图层 - 这似乎在此类教程中被大量使用。 map 产生一个点(在 0,0),仔细检查它似乎是文件中的所有点堆叠在彼此的顶部,所以很明显在 XML 和 OpenLayers 中的点转换之间出现了问题。

这是代码:

var geographic = new OpenLayers.Projection("EPSG:4326");
var mercator = new OpenLayers.Projection("EPSG:900913");

var world = new OpenLayers.Bounds(-180, -89, 180, 89).transform(
geographic, mercator
);

var center = new OpenLayers.LonLat('.$centerMapLat.','.$centerMapLon.').transform(
geographic, mercator
);

var options = {
projection: mercator,
units: "m",
maxExtent: world
};

var map = new OpenLayers.Map("map-id", options);

var osm = new OpenLayers.Layer.OSM();
map.addLayer(osm);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.setCenter(center, 2);

var mapdata = new OpenLayers.Layer.Vector("Map Data", {
strategies: [new OpenLayers.Strategy.Fixed()],
protocol: new OpenLayers.Protocol.HTTP({
url: "7day-M2.5.xml",
format: new OpenLayers.Format.GeoRSS()
})
});
map.addLayer(mapdata);

XML 文件采用以下格式:
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss">

<updated>2012-01-23T09:43:22Z</updated>
<title>USGS M 2.5+ Earthquakes</title>
<subtitle>Real-time, worldwide earthquake list for the past 7 days</subtitle>
<link rel="self" href="http://earthquake.usgs.gov/earthquakes/catalogs/7day-M2.5.xml"/>
<link href="http://earthquake.usgs.gov/earthquakes/"/>
<author><name>U.S. Geological Survey</name></author>

<id>http://earthquake.usgs.gov/</id>
<icon>/favicon.ico</icon>
<entry>
<id>urn:earthquake-usgs-gov:ak:10395995</id>
<title>M 2.7, Alaska Peninsula</title>
<updated>2012-01-23T09:38:43Z</updated>
<link rel="alternate" type="text/html" href="http://earthquake.usgs.gov/earthquakes/recenteqsww/Quakes/ak10395995.php"/>
<summary type="html">
<![CDATA[<img src="http://earthquake.usgs.gov/images/globes/60_-155.jpg" alt="57.806&#176;N 156.412&#176;W" align="left" hspace="20" />
<p>Monday, January 23, 2012 09:38:43 UTC<br>Monday, January 23, 2012 12:38:43 AM at epicenter</p>
<p><strong>Depth</strong>: 122.70 km (76.24 mi)</p>]]></summary><georss:point>57.8058 -156.4123</georss:point>
<georss:elev>-122700</georss:elev>
<category label="Age" term="Past hour"/>
</entry>

[:]

</feed>

在标签之间放置什么值,或者我切掉多少字段似乎并不重要,该点总是出现在 0,0 处。我可以通过在 firebug 中手动编辑坐标来移动该点 - 这是在 html 中为每个点呈现的内容:
<circle id="OpenLayers.Geometry.Point_424" 
cx="4.738678387182473" cy="237.58907791425827"
r="6" fill="#ee9900" fill-opacity="0.4" stroke="#ee9900" stroke-opacity="1" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="none" pointer-events="visiblePainted" cursor="inherit">

我强烈怀疑我做错了什么,所以希望能检查一下

最佳答案

问题是,虽然 map 和背景层(OSM)的投影是“EPSG:900913”,但您从 GeoRSS 加载的点在“EPSG:4326”中。

EPSG:900913 坐标看起来像这样:20037508、20037508。在 EPSG:4326 中,坐标范围在 -180 到 180 之间,这就是为什么 map 上的所有点似乎都在 0,0 左右。

解决方案是通过在创建矢量图层时指定投影来重新投影 GeoRSS 点:

var mapdata = new OpenLayers.Layer.Vector("Map Data", {
strategies: [new OpenLayers.Strategy.Fixed()],
protocol: new OpenLayers.Protocol.HTTP({
url: "7day-M2.5.xml",
format: new OpenLayers.Format.GeoRSS()
}),
projection: geographic
});

关于OpenLayers GeoRSS 解析 - 所有点都在彼此之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8970819/

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