| 33 | | var data = parser.read('<rss xmlns="http://backend.userland.com/rss2" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"><item><geo:long>-1</geo:long><geo:lat>1</geo:long></item></rss>'); |
|---|
| 34 | | t.eq(features.geometry.x, "-1", "w3c geo x read correctly"); |
|---|
| 35 | | t.eq(features.geometry.y, "1", "w3c geo y read correctly"); |
|---|
| | 33 | var data = parser.read('<rss xmlns="http://backend.userland.com/rss2" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"><item><geo:long>-1</geo:long><geo:lat>1</geo:lat></item></rss>'); |
|---|
| | 34 | t.eq(data[0].geometry.x, -1, "w3c geo x read correctly"); |
|---|
| | 35 | t.eq(data[0].geometry.y, 1, "w3c geo y read correctly"); |
|---|