<?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>YQL | Nerdpress.org</title>
	<atom:link href="https://nerdpress.org/tag/yql/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdpress.org</link>
	<description>...dev, tech problems and solutions.</description>
	<lastBuildDate>Sat, 13 Mar 2010 16:51:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Die YQL Geo Library</title>
		<link>https://nerdpress.org/2010/03/13/die-yql-geo-library/</link>
		
		<dc:creator><![CDATA[Max Girkens]]></dc:creator>
		<pubDate>Sat, 13 Mar 2010 16:51:01 +0000</pubDate>
				<category><![CDATA[API]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[geo library]]></category>
		<category><![CDATA[geocoding services]]></category>
		<category><![CDATA[YQL]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=844</guid>

					<description><![CDATA[<p>dieses erwähnenswerte Tool ist ein Javascript-Wrapper für die Geocoding Services: Yahoo Placemaker, Yahoo GeoPlanet, jsonip.appspot.com, IP location tools, W3C Geo location und Flickr.places.findByLatLon. Die Syntax ist mal denkbar einfach, denn das ganze beschränkt sich auf eine einzige Methode, nämlich: Damit geht neben dem Verorten von Strings à la GooglemapsAPI: &#8230;auch mal eben Verorten von IPs: &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2010/03/13/die-yql-geo-library/" class="more-link">Continue reading<span class="screen-reader-text"> "Die YQL Geo Library"</span></a></p>
The post <a href="https://nerdpress.org/2010/03/13/die-yql-geo-library/">Die YQL Geo Library</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>dieses erwähnenswerte <a href="http://isithackday.com/hacks/geo/yql-geo-library/">Tool</a> ist ein Javascript-Wrapper für die Geocoding Services:<br />
<a href="http://developer.yahoo.com/geo/placemaker">Yahoo Placemaker</a>, <a href="http://developer.yahoo.com/geo/geoplanet/">Yahoo GeoPlanet</a>, <a href="http://jsonip.appspot.com/">jsonip.appspot.com</a>, <a href="http://iplocationtools.com/ip_location_api.php">IP location tools</a>, <a href="http://dev.w3.org/geo/api/spec-source.html">W3C Geo location</a> und <a href="http://www.flickr.com/services/api/flickr.places.findByLatLon.html">Flickr.places.findByLatLon</a>.</p>
<p>Die Syntax ist mal denkbar einfach, denn das ganze beschränkt sich auf eine einzige Methode, nämlich:</p>
<pre class="brush: jscript; title: ; notranslate">
yqlgeo.get(what,callback)
</pre>
<p><span id="more-844"></span><br />
Damit geht neben dem Verorten von Strings à la GooglemapsAPI:</p>
<pre class="brush: jscript; title: ; notranslate">
yqlgeo.get('cologne, DE',function(o){
  alert(o.place.name+' ('+
  o.place.centroid.latitude+','+
  o.place.centroid.longitude+
')');
})
</pre>
<p>&#8230;auch mal eben Verorten von IPs:</p>
<pre class="brush: jscript; title: ; notranslate">
yqlgeo.get('217.12.14.240',function(o){
  alert(o.place.name + ',' + o.place.country.content +
    ' (' + o.place.centroid.latitude + ',' +
    o.place.centroid.longitude + ')'
  );
});
</pre>
<p>&#8230;Usern, URLS und verlorengegangenen Schlüsseln.</p>
<p>Cooles Ding &#8211; Lohnt sich definitiv mal <a href="http://isithackday.com/hacks/geo/yql-geo-library/">anzuschauen</a>!</p>The post <a href="https://nerdpress.org/2010/03/13/die-yql-geo-library/">Die YQL Geo Library</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
