<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>标点符 &#187; 地图</title>
	<atom:link href="http://www.biaodianfu.com/tag/%e5%9c%b0%e5%9b%be/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biaodianfu.com</link>
	<description>编译自己的互联网生活</description>
	<lastBuildDate>Tue, 31 Jan 2012 01:07:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>百度地图API经纬度转换接口</title>
		<link>http://www.biaodianfu.com/baidu-ditu-api-map-coordinate.html</link>
		<comments>http://www.biaodianfu.com/baidu-ditu-api-map-coordinate.html#comments</comments>
		<pubDate>Thu, 14 Oct 2010 04:03:19 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[地图]]></category>
		<category><![CDATA[百度]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2790</guid>
		<description><![CDATA[国内所有的电子地图服务提供商都给地图数据加上偏移和加密，所谓的地图数据加密偏移，其实就是用一个偏移算法对地图的经纬度做一个加减偏移量，从而达到与实际地图不一致。这个偏移算法本身是没有什么规律可言的，每家地图服务商都有一套自己的加密偏移算法，但是偏移算法中生成的偏移量是有规律而言的。 因目前各家地图API服务商都沿用不同的坐标体系，故在更换API服务商或对各家API性能进行测试的时候会遇到较大的障碍。在期待出现可以方便地转换不同坐标体系的接口的时候，百度地图API经纬度转换接口出现了。 目前百度地图坐标转换工具支持以下API服务商所采用的坐标体系：（当然还包括百度自己） Mapbar Mapabc 51ditu 谷歌 坐标转换接口说明（http://openapi.baidu.com/map/coordinate.html） 请求接口中有四个参数： from： 被转换的坐标体系 to： 转换到这个坐标体系 x： 经度 y： 纬度 接口应答中有三个key：(应答格式如：{“error”:0,”x”:116.2610991221,”y”:29.820560874846}) error： 值为0时，则为成功，非0时，则为失败 x： 目的经度，即百度坐标经度 y： 目的纬度，即百度坐标纬度 接口的使用示例 谷歌： http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&#38;to=bd09ll&#38;x=116.254615&#38;y=29.814476 51地图： 51地图的坐标，先要除10^5，然后再调用url http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&#038;to=bd09ll&#038;x=116.254615&#038;y=29.814476 Mapbar： http://api.map.baidu.com/ag/coord/convert?from=wgs84ll&#38;to=bd09ll&#38;x=116.254615&#38;y=29.814476 Mapabc： http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&#38;to=bd09ll&#38;x=116.254615&#38;y=29.814476 Related posts: 地图类网站收集 我的WordPress所使用的Ping List 怎么从火星到地球？]]></description>
			<content:encoded><![CDATA[<p>国内所有的电子地图服务提供商都给地图数据加上偏移和加密，所谓的地图数据加密偏移，其实就是用一个偏移算法对地图的经纬度做一个加减偏移量，从而达到与实际地图不一致。这个偏移算法本身是没有什么规律可言的，每家地图服务商都有一套自己的加密偏移算法，但是偏移算法中生成的偏移量是有规律而言的。</p>
<p>因目前各家地图API服务商都沿用不同的坐标体系，故在更换API服务商或对各家API性能进行测试的时候会遇到较大的障碍。在期待出现可以方便地转换不同坐标体系的接口的时候，百度地图API经纬度转换接口出现了。</p>
<p>目前百度地图坐标转换工具支持以下API服务商所采用的坐标体系：（当然还包括百度自己）</p>
<ul>
<li>Mapbar</li>
<li>Mapabc</li>
<li>51ditu</li>
<li>谷歌</li>
</ul>
<p><strong>坐标转换接口说明</strong>（<a href="http://openapi.baidu.com/map/coordinate.html">http://openapi.baidu.com/map/coordinate.html</a>）</p>
<p>请求接口中有四个参数：</p>
<table>
<tbody>
<tr>
<td>from：</td>
<td>被转换的坐标体系</td>
</tr>
<tr>
<td>to：</td>
<td>转换到这个坐标体系</td>
</tr>
<tr>
<td>x：</td>
<td>经度</td>
</tr>
<tr>
<td>y：</td>
<td>纬度</td>
</tr>
</tbody>
</table>
<p>接口应答中有三个key：(应答格式如：{“error”:0,”x”:116.2610991221,”y”:29.820560874846})</p>
<table>
<tbody>
<tr>
<td>error：</td>
<td>值为0时，则为成功，非0时，则为失败</td>
</tr>
<tr>
<td>x：</td>
<td>目的经度，即百度坐标经度</td>
</tr>
<tr>
<td>y：</td>
<td>目的纬度，即百度坐标纬度</td>
</tr>
</tbody>
</table>
<p>接口的使用示例</p>
<table>
<tbody>
<tr>
<td>谷歌：</td>
<td>http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&amp;to=bd09ll&amp;x=116.254615&amp;y=29.814476</td>
</tr>
<tr>
<td>51地图：</td>
<td>51地图的坐标，先要除10^5，然后再调用url</p>
<p>http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&#038;to=bd09ll&#038;x=116.254615&#038;y=29.814476</td>
</tr>
<tr>
<td>Mapbar：</td>
<td>http://api.map.baidu.com/ag/coord/convert?from=wgs84ll&amp;to=bd09ll&amp;x=116.254615&amp;y=29.814476</td>
</tr>
<tr>
<td>Mapabc：</td>
<td>http://api.map.baidu.com/ag/coord/convert?from=gcj02ll&amp;to=bd09ll&amp;x=116.254615&amp;y=29.814476</td>
</tr>
</tbody>
</table>
<p>Related posts:<ol>
<li><a href='http://www.biaodianfu.com/ditu-websites.html' rel='bookmark' title='地图类网站收集'>地图类网站收集</a></li>
<li><a href='http://www.biaodianfu.com/wordpress-ping-list.html' rel='bookmark' title='我的WordPress所使用的Ping List'>我的WordPress所使用的Ping List</a></li>
<li><a href='http://www.biaodianfu.com/from-mars-to-earth.html' rel='bookmark' title='怎么从火星到地球？'>怎么从火星到地球？</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/baidu-ditu-api-map-coordinate.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>地图类网站收集</title>
		<link>http://www.biaodianfu.com/ditu-websites.html</link>
		<comments>http://www.biaodianfu.com/ditu-websites.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 11:02:18 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[实用网站]]></category>
		<category><![CDATA[地图]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=1322</guid>
		<description><![CDATA[1.Google地图 http://ditu.google.cn/，http://maps.google.com/。提供API接口，http://code.google.com/intl/zh-CN/apis/maps/ 2.百度地图 http://map.baidu.com/ 3.图吧地图 http://www.mapbar.com/ 提供API接口 4.我要地图 http://www.51ditu.com/。提供API接口，http://api.51ditu.com/ 5.搜狗地图 http://map.sogou.com/。提供API接口，http://www.go2map.com/down/freemap/ 6.必应地图 http://cn.bing.com/ditu/ 7.MAPabc http://www.mapabc.com/ 。提供API接口，http://code.mapabc.com/ 8.E都市（三维地图）http://www.edushi.com/ Related posts: 网站管理员工具及站长帮助 输入法 百度地图API经纬度转换接口]]></description>
			<content:encoded><![CDATA[<p>1.Google地图 <a href="http://ditu.google.cn/">http://ditu.google.cn/</a>，<a href="http://maps.google.com/">http://maps.google.com/</a>。提供API接口，<a href="http://code.google.com/intl/zh-CN/apis/maps/">http://code.google.com/intl/zh-CN/apis/maps/</a></p>
<p>2.百度地图 <a href="http://map.baidu.com/">http://map.baidu.com/</a></p>
<p>3.图吧地图 <a href="http://www.mapbar.com/">http://www.mapbar.com/</a> 提供API接口</p>
<p>4.我要地图 <a href="http://www.51ditu.com/">http://www.51ditu.com/</a>。提供API接口，<a href="http://api.51ditu.com/">http://api.51ditu.com/</a></p>
<p>5.搜狗地图 <a href="http://map.sogou.com/">http://map.sogou.com/</a>。提供API接口，<a href="http://www.go2map.com/down/freemap/">http://www.go2map.com/down/freemap/</a></p>
<p>6.必应地图 <a href="http://cn.bing.com/ditu/">http://cn.bing.com/ditu/</a></p>
<p>7.MAPabc <a href="http://www.mapabc.com/">http://www.mapabc.com/</a> 。提供API接口，<a href="http://code.mapabc.com/">http://code.mapabc.com/</a></p>
<p>8.E都市（三维地图）<a href="http://www.edushi.com/">http://www.edushi.com/</a></p>
<p>Related posts:<ol>
<li><a href='http://www.biaodianfu.com/webmaster-tools.html' rel='bookmark' title='网站管理员工具及站长帮助'>网站管理员工具及站长帮助</a></li>
<li><a href='http://www.biaodianfu.com/shurufa.html' rel='bookmark' title='输入法'>输入法</a></li>
<li><a href='http://www.biaodianfu.com/baidu-ditu-api-map-coordinate.html' rel='bookmark' title='百度地图API经纬度转换接口'>百度地图API经纬度转换接口</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/ditu-websites.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>怎么从火星到地球？</title>
		<link>http://www.biaodianfu.com/from-mars-to-earth.html</link>
		<comments>http://www.biaodianfu.com/from-mars-to-earth.html#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:13:21 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[新闻资讯]]></category>
		<category><![CDATA[地图]]></category>
		<category><![CDATA[百度]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=1217</guid>
		<description><![CDATA[从地球到火星   1962年前苏联火星1号探测火星失败 1971年前苏联火星2号在火星着陆 1989年福波斯1、2号飞往火星途中失踪 1996年俄“火星-96”发射失败 1997年火星环球勘探者进入火星轨道 2003年美国发射勇气号和机遇号在火星着陆 2003年欧洲发射“火星快车” 2007年美国发射凤凰号火星极地着陆探测器 2009年俄罗斯将探测“火卫一” …… 火星离地球，最近距离是5500万公里，最远距离是4亿公里。 火星遥远，探索更远…… 以上信息来自百度地图。 http://map.baidu.com/from_mars_to_the_earth.html Related posts: 百度地图API经纬度转换接口 地图类网站收集 百度的快照与页面上的时间]]></description>
			<content:encoded><![CDATA[<p style="font-size: 12px; font-weight: normal;">从地球到火星</p>
<p id="mars_exp" style="bottom: 10px;"> <img class="alignnone size-full wp-image-1218" title="from-mars-to-earth" src="http://www.biaodianfu.com/wp-content/uploads/2009/10/from-mars-to-earth.png" alt="from-mars-to-earth" width="540" height="390" /></p>
<ol id="mars_dev">
<li>1962年前苏联火星1号探测火星<span>失败</span></li>
<li>1971年前苏联火星2号在火星<span>着陆</span></li>
<li>1989年福波斯1、2号飞往火星途中<span>失踪</span></li>
<li>1996年俄“火星-96”发射<span>失败</span></li>
<li>1997年火星环球勘探者<span>进入火星轨道</span></li>
<li>2003年美国发射勇气号和机遇号在火星<span>着陆</span></li>
<li>2003年欧洲<span>发射</span>“火星快车”</li>
<li>2007年美国<span>发射</span>凤凰号火星极地着陆探测器</li>
<li>2009年俄罗斯将探测“火卫一”</li>
<li>……</li>
</ol>
<p>火星离地球，最近距离是5500万公里，最远距离是4亿公里。</p>
<p style="margin-top: 0.1em;">火星遥远，探索更远……</p>
<p style="margin-top: 0.1em;">以上信息来自百度地图。</p>
<p style="margin-top: 0.1em;"><a href="http://map.baidu.com/from_mars_to_the_earth.html">http://map.baidu.com/from_mars_to_the_earth.html</a></p>
<p>Related posts:<ol>
<li><a href='http://www.biaodianfu.com/baidu-ditu-api-map-coordinate.html' rel='bookmark' title='百度地图API经纬度转换接口'>百度地图API经纬度转换接口</a></li>
<li><a href='http://www.biaodianfu.com/ditu-websites.html' rel='bookmark' title='地图类网站收集'>地图类网站收集</a></li>
<li><a href='http://www.biaodianfu.com/baidu-cache-time.html' rel='bookmark' title='百度的快照与页面上的时间'>百度的快照与页面上的时间</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/from-mars-to-earth.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

