<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
	<title>GeoPlanet-ALL</title>
	<description>All GeoPlanet boards</description>
	<link>http://developer.yahoo.net/forum/index.php</link>
	<pubDate>Tue, 09 Feb 2010 19:37:15 -0800</pubDate>
	<ttl>99</ttl>
	<item>
		<title>Getting Status 0 and Status Text OK while using GEOPlanet API in Firefox via Ajax</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4291</link>
		<description><![CDATA[Hi,<br />I am facing this peculiar issue in Mozilla Firefox 3.5.7, when i fire a AJAX request to the GEOPlanet URL:<br />var url = 'http://where.yahooapis.com/v1/places.q('+elem+');start=0;count=10?appid=&lt;appid&gt;';<br />the "elem" here is an input element.<br /><br />The Javascript for the XMLHTTP is as follows:<br /><br />if (window.XMLHttpRequest)<br />  {// code for IE7, Firefox, Mozilla, etc.  	<br />  	xmlhttp=new XMLHttpRequest();<br />   }<br />else if (window.ActiveXObject)<br />  {// code for IE5, IE6<br />   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");<br />  }<br />if (xmlhttp!=null)<br />  {<br />  xmlhttp.onreadystatechange=onResponse;<br />  xmlhttp.open("GET",url,true);<br />  xmlhttp.send(null);<br />  }<br />else<br />  {<br />  alert("Your browser does not support XMLHTTP.");<br />  }<br /><br />The call back has following implementation:<br />function onResponse()<br />{<br />	if(xmlhttp.readyState!=4) return;<br />	alert("Status:"+xmlhttp.status);<br />alert("StatusText:"+xmlhttp.statusText);<br />	if(xmlhttp.status!=200)<br />	  {<br />	  alert("Problem retrieving XML data");<br />	  return;<br />	  }<br />----<br />---<br />}<br /><br /><br />I get alerts as <br />Status:0<br />Status Text:Ok<br />and<br />Problem retrieving XML data<br /><br />The same code though works on IE 7<br />Kindly help me with this issue.<br />TIA<br />Regards,<br />Sidharth]]></description>
		<pubDate>Fri, 22 Jan 2010 01:49:12 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4291</guid>
	</item>
	<item>
		<title>What is the Mapping between the WOEID of a location and the Weather.com Weather Location Id?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4289</link>
		<description><![CDATA[Hi Team,<br />I wanted to know whether there is a mapping between the Yahoo GeoPlanet WOEID and the Weather Location Id.<br />The Yahoo Rss for weather uses the WOEID and responds with the Weather Forecast for the Day. <br />But with the Weather Location Id, it responds with the Forecast for 5 Days. I wanted use the 5 day full forecast feed.<br />Kindly help me with this Information.<br />TIA<br /><br />Regards,<br />Sidharth]]></description>
		<pubDate>Thu, 21 Jan 2010 20:02:29 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4289</guid>
	</item>
	<item>
		<title>What is the Mapping between the WOEID of a location and the Weather.com Weather Location Id?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4289</link>
		<description>Hi, I forwarded this to our weather team.</description>
		<pubDate>Thu, 21 Jan 2010 20:02:29 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4289</guid>
	</item>
	<item>
		<title>What is the Mapping between the WOEID of a location and the Weather.com Weather Location Id?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4289</link>
		<description><![CDATA[Hi Sidharth <br /><br />The YDN weather API is intended for 2 day forecast apart from current day observation data.<br />The example in the YDN weather documentation also shows 2 day forecast for API call.<br /><br />The following is the details YDN weather documentation that uses WOEIDs: <a href="http://developer.yahoo.com/weather/" rel="nofollow" target="ext">http://developer.yahoo.com/weather/</a><br />The old weather documentation: <a href="http://developer.yahoo.com/weather/archive.html" rel="nofollow" target="ext">http://developer.yahoo.com/weather/archive.html</a><br /><br />Can you post the link you are using to get the 5-day forecast?]]></description>
		<pubDate>Thu, 21 Jan 2010 20:02:29 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4289</guid>
	</item>
	<item>
		<title>Finding all towns/cities of a country</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4173</link>
		<description><![CDATA[Hi,<br /><br />currently I'm exploring the yahoo! GeoPlanet API and I'm failing at one simple task. I only want to get a list of all cities/towns within a given country. Do you have any suggestions?<br /><br />Thanks in advance,<br /><br />Jan]]></description>
		<pubDate>Tue, 12 Jan 2010 03:31:35 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4173</guid>
	</item>
	<item>
		<title>Finding all towns/cities of a country</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=4173</link>
		<description><![CDATA[There are a LOT of Towns in a country. What you could do is recursively filter down by using children: country, state, county and town:<br /><br />Start with USA = WOEID = 23424977<br /><a href="http://where.yahooapis.com/v1/place/23424977/children.type(state);count=0?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/234249...ppid=YOUR_APPID</a><br /><br />Pick your state:<br /><a href="http://where.yahooapis.com/v1/place/STATE_WOEID/children.type(county);count=0?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/STATE_...ppid=YOUR_APPID</a><br /><br />Pick County, and get the child towns:<br /><a href="http://where.yahooapis.com/v1/place/COUNTY_WOEID/children.type(town);count=0?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/COUNTY...ppid=YOUR_APPID</a>]]></description>
		<pubDate>Tue, 12 Jan 2010 03:31:35 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=4173</guid>
	</item>
	<item>
		<title>Trouble finding place by alias</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3932</link>
		<description><![CDATA[I'm trying to find the Borough of Halton in England via the API.  LocalAdmin "Halton Borough" has ID 12696171 and the alias "Halton" in GeoPlanet 7.4.0.  But if I search for "Halton, GBR" or "Halton, England" I only get towns named "Halton".  Searching for "Halton Borough" does get me place 12696171.  Searching for "Halton" with types restricted to "8,9,10" doesn't help.<br /><br />Here's my query: <a href="http://where.yahooapis.com/v1/places.q('Halton&#39%3b%29;count=0?appid=XXX" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(&#3...unt=0?appid=XXX</a><br /><br />Any ideas?]]></description>
		<pubDate>Fri, 18 Dec 2009 15:53:49 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3932</guid>
	</item>
	<item>
		<title>Trouble finding place by alias</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3932</link>
		<description>Thanks, we have logged a ticket to investigate this issue.</description>
		<pubDate>Fri, 18 Dec 2009 15:53:49 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3932</guid>
	</item>
	<item>
		<title>Place add request: Matarca, Morocco</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3904</link>
		<description><![CDATA[Place name (Matarka, Morocco)<br />Location (Latitude: N 33° 15' 0''  Longitude: W 2° 42' 36'')<br /><br /><a href="http://www.geonames.org/search.html?q=matarka&country=" rel="nofollow" target="ext">http://www.geonames.org/search.html?q=matarka&country=</a>]]></description>
		<pubDate>Thu, 17 Dec 2009 06:16:25 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3904</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[i am using the query type to retireve items type Town...<br /><br /><br /><a href="http://where.yahooapis.com/v1/places$and(.q(espa%C3%B1a),.type(Town));count=20?appid=MYAPPID&lang=en" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places$and(....PID&lang=en</a><br /><br /><a href="http://where.yahooapis.com/v1/places$and(.q(espa%C3%B1a),.type(Pueblo));count=20?appid=MYAPPID&lang=es" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places$and(....PID&lang=es</a><br /><br /><br />both queries (my app its multilingual) returns Espaa or Spain as town.]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[In our data the town is called "España" in both English and Spanish. Do you expect the English version as "Espana" ?]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[<!--quoteo(post=10581:date=Dec 16 2009, 03&#58;26 AM:name=Walter)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Walter &#064; Dec 16 2009, 03&#58;26 AM) <a href="index.php?act=findpost&pid=10581"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->In our data the town is called "España" in both English and Spanish. Do you expect the English version as "Espana" ?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />no, the error it seems that appears the country Spain (or España) as Town, there is no town called "España"  or "Spain"and could  confuse my users because i am trying to filter the location  in my app only by Town.]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[no ideas? no clues? pleaseeee give me some feedback    <img src="http://developer.yahoo.net/forum/style_emoticons/default/unsure.gif" style="vertical-align:middle" emoid=":unsure:" border="0" alt="unsure.gif" />]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[Sorry for the late reply.<br /><br />Firstly there is a town called Espana : <a href="http://maps.yahoo.com/#mvt=m&lat=40.62278&lon=-4.03332&zoom=15&q1=Espana%2C%20ES" rel="nofollow" target="ext">http://maps.yahoo.com/#mvt=m&lat=40.62...=Espana%2C%20ES</a><br />That is not the only case, as there are a lot of towns that share their name with countries.<br /><br />GeoPlanet by default always returns the single most likely place, so for "Espana", "Brazil" or "Australia" you will get a country:<br /><br /><a href="http://where.yahooapis.com/v1/places.q(Espana)?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(Esp...ppid=YOUR_APPID</a><br /><br />If you use a filter by type Town, like you did, GeoPlanet returns the most likely town, even though we are much more sure that "Espana" is usually a country. So what you need to do is not use a filter, and do the filtering yourself by looking at the "placeTypeName" result in the XML (or JSON).<br /><br />For example, you will display Madrid because you have &lt;placeTypeName code="7"&gt;Town&lt;/placeTypeName&gt; in the XML:<br /><a href="http://where.yahooapis.com/v1/places.q(Madrid)?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(Mad...ppid=YOUR_APPID</a><br /><br />I hope this helps,<br />Walter]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>error:  España (spain)  as Town type</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3828</link>
		<description><![CDATA[thanks Walter! so embarrasing to know that a town called spain exists...<br /><br />i will try with your suggestion, or maybe do a special case for this town.<br /><br />Thanks again for your support!  <img src="http://developer.yahoo.net/forum/style_emoticons/default/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />]]></description>
		<pubDate>Sat, 12 Dec 2009 08:31:50 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3828</guid>
	</item>
	<item>
		<title>Can i get the bitmaps from yahoomap</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3806</link>
		<description><![CDATA[Hi, <br />Is it possible to do some thing like.<br /><br />If i click on a country or Area (array lanlon). need to show that much area in another controle like Image controle.<br /><br />Basically i need to show some selective portion of the map in different container.<br /><br />Thanks in advance<br />Kirant400]]></description>
		<pubDate>Thu, 10 Dec 2009 21:12:12 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3806</guid>
	</item>
	<item>
		<title>Macedonia</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3753</link>
		<description><![CDATA[Macedonia has statistical regions that should probably be States in WOE:<br /><a href="http://en.wikipedia.org/wiki/Republic_of_Macedonia#Administrative_regions" rel="nofollow" target="ext">http://en.wikipedia.org/wiki/Republic_of_M...trative_regions</a><br /><br />Currently, Macedonia's municipalities are treated as first level administrative areas.  They should probably be second level.<br /><br />The capital, Skopje (482940), is made up of municipalities, e.g. Aerodrom (55848400).  These have a place type of State, but should probably be something else.]]></description>
		<pubDate>Tue, 08 Dec 2009 14:27:17 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3753</guid>
	</item>
	<item>
		<title>Macedonia</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3753</link>
		<description>Thanks for bringing this to our attention, we will investigate this.</description>
		<pubDate>Tue, 08 Dec 2009 14:27:17 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3753</guid>
	</item>
	<item>
		<title>Macedonia</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3753</link>
		<description><![CDATA[They often are, but Statistical areas are not necessarily administrative. In this case they are different, and the fact<br />that they are conveniently formed by aggregations of the municipalities shouldn't be a reason to classify them as<br />something they are not.<br /><br />All our standard references indicate that the 84 municipalties constitute the primary administrative sub-divisions<br /><br /><a href="http://en.wikipedia.org/wiki/ISO_3166-2:MK" rel="nofollow" target="ext">http://en.wikipedia.org/wiki/ISO_3166-2:MK</a><br /><a href="http://en.wikipedia.org/wiki/Municipalities_of_the_Republic_of_Macedonia" rel="nofollow" target="ext">http://en.wikipedia.org/wiki/Municipalitie...ic_of_Macedonia</a><br /><a href="http://www.statoids.com/umk.html" rel="nofollow" target="ext">http://www.statoids.com/umk.html</a><br /><br />They ARE valid inclusions as statistical regions (belonging to a proposed new feature class), but not as part of the administrative<br />hierarchy]]></description>
		<pubDate>Tue, 08 Dec 2009 14:27:17 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3753</guid>
	</item>
	<item>
		<title>5000 request per day rate limit</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3728</link>
		<description><![CDATA[Hello,<br /><br />Just curious if I can request or pay for a higher limit of API requests per day on the Geocoding API:http://developer.yahoo.com/maps/rest/V1/geocode.html<br /><br />If not, is it a legitimate use of the service to use an array of proxies to do API requests? This would involve my app doing a sort of round robin calling of the proxies. So, for example, if I had 5 proxies, each with it's own public IP address, would I be violating the terms of use? This example would effectively allow my app to make 25,000 API requests per day.<br /><br />Any thoughts? Thanks.]]></description>
		<pubDate>Mon, 07 Dec 2009 15:18:03 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3728</guid>
	</item>
	<item>
		<title>5000 request per day rate limit</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3728</link>
		<description><![CDATA[<!--quoteo(post=10220:date=Dec 7 2009, 03&#58;18 PM:name=huntersmoonchart)--><div class='quote'><div class='quotetop'>QUOTE <cite>(huntersmoonchart &#064; Dec 7 2009, 03&#58;18 PM) <a href="index.php?act=findpost&pid=10220"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hello,<br /><br />Just curious if I can request or pay for a higher limit of API requests per day on the Geocoding API:http://developer.yahoo.com/maps/rest/V1/geocode.html<br /><br />If not, is it a legitimate use of the service to use an array of proxies to do API requests? This would involve my app doing a sort of round robin calling of the proxies. So, for example, if I had 5 proxies, each with it's own public IP address, would I be violating the terms of use? This example would effectively allow my app to make 25,000 API requests per day.<br /><br />Any thoughts? Thanks.<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />you can use some kind of cache to dont doing request each time runs the query. i am using memcached unde Zend Framework , and works nice and easy]]></description>
		<pubDate>Mon, 07 Dec 2009 15:18:03 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3728</guid>
	</item>
	<item>
		<title>5000 request per day rate limit</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3728</link>
		<description><![CDATA[<!--quoteo(post=10451:date=Dec 12 2009, 08&#58;37 AM:name=Dada)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Dada &#064; Dec 12 2009, 08&#58;37 AM) <a href="index.php?act=findpost&pid=10451"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->you can use some kind of cache to dont doing request each time runs the query. i am using memcached unde Zend Framework , and works nice and easy<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br /> i think  50K per day means 50,000 , not 5,000]]></description>
		<pubDate>Mon, 07 Dec 2009 15:18:03 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3728</guid>
	</item>
	<item>
		<title>5000 request per day rate limit</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3728</link>
		<description><![CDATA[<!--quoteo(post=10467:date=Dec 13 2009, 07&#58;30 AM:name=Dada)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Dada &#064; Dec 13 2009, 07&#58;30 AM) <a href="index.php?act=findpost&pid=10467"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->i think  50K per day means 50,000 , not 5,000<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />Also, you can use YQL, which has built in caching/throttling. Here is an example: <a href="http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20geo.places%20where%20text%3D%22sfo%22&format=xml" rel="nofollow" target="ext">http://query.yahooapis.com/v1/public/yql?q...&format=xml</a>]]></description>
		<pubDate>Mon, 07 Dec 2009 15:18:03 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3728</guid>
	</item>
	<item>
		<title>jGeoPlanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3709</link>
		<description><![CDATA[Hello. I've written a Java client library for the GeoPlanet API. It's called jGeoPlanet and is released open-source under the LGPL.<br /><br />You can get the library and source code here: <a href="http://www.winterwell.com/software/jgeoplanet/" rel="nofollow" target="ext">http://www.winterwell.com/software/jgeoplanet/</a><br /><br />The current version is 0.1.0. Bug reports and any other feedback are very welcome.]]></description>
		<pubDate>Sun, 06 Dec 2009 10:10:25 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3709</guid>
	</item>
	<item>
		<title>Field types and length</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3595</link>
		<description><![CDATA[Is there any documentation of field types and lengths that we could use when creating MySQL tables to hold GeoPlanet data?<br /><br />For example, is WOEID an INT, DOUBLE or VARCHAR? Is there a maximum length to place names, or should it be TEXT? Are ISO codes always 3 characters or can they be longer?]]></description>
		<pubDate>Fri, 27 Nov 2009 04:59:56 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3595</guid>
	</item>
	<item>
		<title>TetonCode</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3270</link>
		<description><![CDATA[Hi, I'm the guy that developed Zyp, YPlaces and SakMap, all of them  mashups using GeoPlanet.<br /><br />This forum has been great as a lot of people have seen my work, and since I don't do this for profit, it's heartwarming!<br /><br />My old website, TetonPost, has bit the dust. It was never under my control and it became a source of contention between others, and was subsequently murdered.<br /><br />So, I finally have my own domain to host this code. I still think GeoPlanet is great and I hope it survives, so I will keep my code alive along with it.<br /><br />The new links:<br /><br /><a href="http://www.tetoncode.com/zyp/" rel="nofollow" target="ext">Zyp</a><br /><br /><a href="http://www.tetoncode.com/yplaces/" rel="nofollow" target="ext">YPlaces</a><br /><br /><a href="http://www.tetoncode.com/sakmap/" rel="nofollow" target="ext">SakMap</a><br /><br /><a href="http://www.tetoncode.com/" rel="nofollow" target="ext">TetonCode</a> (the home page stub, under development...)<br /><br />Thanks for your interest,<br /><br /><a href="mailto:tetonpost@gmail.com">Jim Hamilton</a>]]></description>
		<pubDate>Thu, 05 Nov 2009 17:38:30 -0800</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3270</guid>
	</item>
	<item>
		<title>request commercial use</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3134</link>
		<description><![CDATA[Hi Yahoo Team,<br /><br />we want to use your Database to Setup a website where you can find locations. Does your license allow to use your Database for this kind of Commercial use?<br /><br />Thanks <br /><br />Regards <br /><br />Lee]]></description>
		<pubDate>Tue, 27 Oct 2009 12:21:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3134</guid>
	</item>
	<item>
		<title>request commercial use</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3134</link>
		<description><![CDATA[Hi Lee,<br /><br />Thanks for getting in touch; please DM me contact details to @YahooGeo on Twitter and we can talk offline about your use case and what would work best for you.<br /><br />Best regards<br /><br /><i><b>Gary Gale, Director of Engineering, Yahoo! Geo Technologies</b></i><br /><br /><!--quoteo(post=8833:date=Oct 27 2009, 11&#58;21 AM:name=lee)--><div class='quote'><div class='quotetop'>QUOTE <cite>(lee &#064; Oct 27 2009, 11&#58;21 AM) <a href="index.php?act=findpost&pid=8833"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi Yahoo Team,<br /><br />we want to use your Database to Setup a website where you can find locations. Does your license allow to use your Database for this kind of Commercial use?<br /><br />Thanks <br /><br />Regards <br /><br />Lee<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Tue, 27 Oct 2009 12:21:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3134</guid>
	</item>
	<item>
		<title>999 error code</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3071</link>
		<description><![CDATA[Need help run a cribbage league though yahoo games - <a href="http://leagues.games.yahoo.com/league/legendsleague" rel="nofollow" target="ext">http://leagues.games.yahoo.com/league/legendsleague</a> - run a game generator designed by a yahoo tech guy. Have games 24/7, as owner of the league it is my responiblity to my members to have the games up ready to play.   That is fine however in the last few days I can only put 1 maybe 2 days up at a time; was able to run a week at a time. Now all I get is the dreaded 999 error code locks me out for an hour or so at a time.  Seems if one is working inside the walls of thier own league that one would not occur the 999 error. What can I do to avoid this in the future???  a.firefly@yahoo.com]]></description>
		<pubDate>Wed, 21 Oct 2009 15:25:05 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3071</guid>
	</item>
	<item>
		<title>999 error code</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3071</link>
		<description><![CDATA[Answered on your previous post.<br /><br />Robyn Tippins<br />Community, YDN]]></description>
		<pubDate>Wed, 21 Oct 2009 15:25:05 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3071</guid>
	</item>
	<item>
		<title>999 error code</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3071</link>
		<description><![CDATA[<!--quoteo(post=8699:date=Oct 23 2009, 12&#58;52 PM:name=duzins)--><div class='quote'><div class='quotetop'>QUOTE <cite>(duzins &#064; Oct 23 2009, 12&#58;52 PM) <a href="index.php?act=findpost&pid=8699"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Answered on your previous post.<br /><br />Robyn Tippins<br />Community, YDN<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br /><br />Thank you will try that....Yahoo cribbage and euchre rooms have been down most of today anyways...Don't understand why they can't keep them operational.]]></description>
		<pubDate>Wed, 21 Oct 2009 15:25:05 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3071</guid>
	</item>
	<item>
		<title>email contact yahoo geo planet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3067</link>
		<description><![CDATA[Hi,<br /><br />great database. But i found some bugs after the import to mysql at ISO DE. Has someone a email where i can report these bus(hierachie bugs), and ask for the commercial licens? Does someone know wheater geoplanet will import openstreetmap data.<br /><br />thanks<br /><br />my email is<br /><br />killbillgates_de@yahoo.de<br /><br />sorry a stupid email but 10 years ago my first email as linux man]]></description>
		<pubDate>Wed, 21 Oct 2009 10:29:38 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3067</guid>
	</item>
	<item>
		<title>email contact yahoo geo planet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3067</link>
		<description><![CDATA[Hi Lee,<br /><br />There isn't currently a public email address for the Geo Technologies group at Yahoo! - please continue to report any issues that you may find on these forums or alternatively send a Direct Message to @YahooGeo on Twitter and we can discuss this offline.<br /><br />Requests for commercial usage of GeoPlanet should be posted to the GeoPlanet Commercial Use forum - <a href="http://developer.yahoo.net/forum/index.php?showforum=32" rel="nofollow" target="ext">http://developer.yahoo.net/forum/index.php?showforum=32</a><br /><br />We are currently aggregating a variety of open data sources into GeoPlanet, one of them is OpenStreetMap; we hope to be exposing that data sometime in 2010.<br /><br />Regards<br /><br /><i><b>Gary Gale, Director of Engineering, Yahoo! Geo Technologies</b></i><br /><br /><!--quoteo(post=8622:date=Oct 21 2009, 09&#58;29 AM:name=lee)--><div class='quote'><div class='quotetop'>QUOTE <cite>(lee &#064; Oct 21 2009, 09&#58;29 AM) <a href="index.php?act=findpost&pid=8622"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi,<br /><br />great database. But i found some bugs after the import to mysql at ISO DE. Has someone a email where i can report these bus(hierachie bugs), and ask for the commercial licens? Does someone know wheater geoplanet will import openstreetmap data.<br /><br />thanks<br /><br />my email is<br /><br />killbillgates_de@yahoo.de<br /><br />sorry a stupid email but 10 years ago my first email as linux man<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Wed, 21 Oct 2009 10:29:38 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3067</guid>
	</item>
	<item>
		<title>belongtos data?  geometries?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3019</link>
		<description><![CDATA[Are there any plans to release the belongsto data?  For example, in the places file, "Dallas, TX" has the parent "Dallas County".  But "Dallas, TX" is in 5 counties.  I'm hoping the belongsto data would include this.<br /><br />Also are there any plans to release geographies with all/some of the data?  Or even a file mapping WOE IDs to FIPS codes so I can match WOE IDs to census data?]]></description>
		<pubDate>Fri, 16 Oct 2009 10:06:15 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3019</guid>
	</item>
	<item>
		<title>belongtos data?  geometries?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3019</link>
		<description><![CDATA[There are currently no plans to release the belongsto data.  You will need to access this information via the GeoPlanet Web Service.  The belongtos relation includes all places that fully or mostly contain a place.  Dallas is mostly in Dallas County, which is the only county in the belongto list.  The other counties (Collin, Denton, Kaufman, and Rockwall) containing parts of Dallas are not associated with Dallas within GeoPlanet.<br /><br />Mapping WOEIDS to ids in other namespaces (such as FIPS) is on our wish list, but we haven't set a date for including it in GeoPlanet.  Are there other namespaces that would be useful?<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=8504:date=Oct 16 2009, 09&#58;06 AM:name=dheldermixer)--><div class='quote'><div class='quotetop'>QUOTE <cite>(dheldermixer &#064; Oct 16 2009, 09&#58;06 AM) <a href="index.php?act=findpost&pid=8504"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Are there any plans to release the belongsto data?  For example, in the places file, "Dallas, TX" has the parent "Dallas County".  But "Dallas, TX" is in 5 counties.  I'm hoping the belongsto data would include this.<br /><br />Also are there any plans to release geographies with all/some of the data?  Or even a file mapping WOE IDs to FIPS codes so I can match WOE IDs to census data?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Fri, 16 Oct 2009 10:06:15 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3019</guid>
	</item>
	<item>
		<title>belongtos data?  geometries?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3019</link>
		<description><![CDATA[ISO 3361-2 codes would be a good start.  HASC codes might help too.  We're trying to match up WOE IDs with entities in our database.]]></description>
		<pubDate>Fri, 16 Oct 2009 10:06:15 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3019</guid>
	</item>
	<item>
		<title>State of Alabama missing from 7.3.1 data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3018</link>
		<description><![CDATA[It's in 7.2<br />&gt; awk -F"&#92;t" '{ if ($3 == "&#92;"Alabama&#92;"") { print $0 } }' &lt; geoplanet_places_7.2.tsv <br />2347559 "US"    "Alabama"       ENG     State   23424977<br />2352520 "US"    "Alabama"       ENG     Town    12589330<br /><br />But not 7.3.1<br />&gt; awk -F"&#92;t" '{ if ($3 == "&#92;"Alabama&#92;"") { print $0 } }' &lt; geoplanet_places_7.3.1.tsv<br />2352520 "US"    "Alabama"       ENG     Town    12589330<br /><br />David]]></description>
		<pubDate>Fri, 16 Oct 2009 09:57:20 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3018</guid>
	</item>
	<item>
		<title>State of Alabama missing from 7.3.1 data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3018</link>
		<description><![CDATA[Hi David<br />Thank you for bringing this to our attention.<br />We have looked into the issue and have found that we have 41 missing entities in the 7.3.1 version of the places file.<br />Some of these are highly visible places (such as your Alabama case)<br />We have diagnosed the cause, are in the process of producing an updated version of the data and will make it available as soon as possible.]]></description>
		<pubDate>Fri, 16 Oct 2009 09:57:20 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3018</guid>
	</item>
	<item>
		<title>State of Alabama missing from 7.3.1 data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3018</link>
		<description><![CDATA[David<br />Since my previous response we have made new downloads of the data available.<br />Both versions 'geoplanet_data_7.3.2.zip', released on 2009-10-27 and (the latest) 'geoplanet_data_7.4.0.zip', released on 2009-11-17 have this issue fixed.]]></description>
		<pubDate>Fri, 16 Oct 2009 09:57:20 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3018</guid>
	</item>
	<item>
		<title>MySql Import</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3017</link>
		<description><![CDATA[Is it possible to import the geo dataset  into a mysql instance?<br />there are any particular settings?<br /><br />Thanks]]></description>
		<pubDate>Fri, 16 Oct 2009 09:56:51 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3017</guid>
	</item>
	<item>
		<title>MySql Import</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=3017</link>
		<description><![CDATA[<!--quoteo(post=8502:date=Oct 16 2009, 08&#58;56 AM:name=eselgon)--><div class='quote'><div class='quotetop'>QUOTE <cite>(eselgon &#064; Oct 16 2009, 08&#58;56 AM) <a href="index.php?act=findpost&pid=8502"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Is it possible to import the geo dataset  into a mysql instance?<br />there are any particular settings?<br /><br />Thanks<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br />its very simple<br /><br />mysqlimport will do it<br /><br />use a primary index for WOID<br /><br />and for parentid a normal index <br /><br />i have some php parser to put all plz to one database, one for suburbs, and town,but i found some hierachie problems at ISO DE.]]></description>
		<pubDate>Fri, 16 Oct 2009 09:56:51 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=3017</guid>
	</item>
	<item>
		<title>opengeodb yahoo geoplanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2917</link>
		<description><![CDATA[Hi Yahoo Team,<br /><br />we want to user your service to geocode our ne service. I tried to send to geo-commercial@yahoo-inc.com an email but the email is not valid.<br /><br />i have some questions.<br /><br />1. we have hat our database many town, including adm0,adm1.. now i want to add your woeid to the database.to get more informations from your services(already done).<br />2. is it possible to search for streets with your service to get the woeid of the street and the woeid of the parent location<br /><br />thanks]]></description>
		<pubDate>Sat, 03 Oct 2009 10:30:15 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2917</guid>
	</item>
	<item>
		<title>opengeodb yahoo geoplanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2917</link>
		<description><![CDATA[<!--quoteo(post=8249:date=Oct 3 2009, 09&#58;30 AM:name=lee)--><div class='quote'><div class='quotetop'>QUOTE <cite>(lee &#064; Oct 3 2009, 09&#58;30 AM) <a href="index.php?act=findpost&pid=8249"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->2. is it possible to search for streets with your service to get the woeid of the street and the woeid of the parent location<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />No, we do not associate WOEID's with streets or geocode street addresses. If you really need to geocode street addresses try the Maps API at <a href="http://developer.yahoo.com/maps/" rel="nofollow" target="ext">http://developer.yahoo.com/maps/</a><br /><br />-Walter]]></description>
		<pubDate>Sat, 03 Oct 2009 10:30:15 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2917</guid>
	</item>
	<item>
		<title>API Limits on Client/Server Side Calls</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2898</link>
		<description><![CDATA[Hi,<br /><br />I'd like to use the GeoPlanet API from my PHP code (server side) but having read the threads on this forum I'm concerned that this might not be viable due to the rate capping that would apply to the servers IP address.<br /><br />As an alternative I could make the API calls client side from the visitors IP address using Javascript/AJAX. However before I invest time in this I'd like to confirm that:<br /><br />1. The rate cap is IP based and doing the API calls client side would mean that the users IP address might get rate capped but even if this happens my appid wouldn't be effected and other visitors on different IP addresses could continue to use the service.<br /><br />2. What are the dangers of making my appid public by including it in the javascript code.<br /><br />Cheers,<br />Dave]]></description>
		<pubDate>Fri, 02 Oct 2009 04:51:36 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2898</guid>
	</item>
	<item>
		<title>API Limits on Client/Server Side Calls</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2898</link>
		<description><![CDATA[The GeoPlanet Web Service is rate limited to prevent commercial use and abuse.  As you pointed out, the rate limiting is based on APPID and IP Address, so using GeoPlanet in a client-side application is less likely to be limited than using GeoPlanet in a server-side application.  Only the combination of APPID and IP Address will be limited, so users on one IP address will not be affected by users on other IP addresses.<br /><br />Making your APPID visible in a client-side application leaves open the possibility of another developer using your APPID to call Yahoo! Web Services.  This could result in unexpected rate limiting, but not much else.  If you are concerned about this, do not make your APPID visible.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=8198:date=Oct 2 2009, 03&#58;51 AM:name=Basher)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Basher &#064; Oct 2 2009, 03&#58;51 AM) <a href="index.php?act=findpost&pid=8198"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi,<br /><br />I'd like to use the GeoPlanet API from my PHP code (server side) but having read the threads on this forum I'm concerned that this might not be viable due to the rate capping that would apply to the servers IP address.<br /><br />As an alternative I could make the API calls client side from the visitors IP address using Javascript/AJAX. However before I invest time in this I'd like to confirm that:<br /><br />1. The rate cap is IP based and doing the API calls client side would mean that the users IP address might get rate capped but even if this happens my appid wouldn't be effected and other visitors on different IP addresses could continue to use the service.<br /><br />2. What are the dangers of making my appid public by including it in the javascript code.<br /><br />Cheers,<br />Dave<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Fri, 02 Oct 2009 04:51:36 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2898</guid>
	</item>
	<item>
		<title>Lleida not found</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2856</link>
		<description><![CDATA[when i request....<br /><a href="http://where.yahooapis.com/v1/places.q('Lleida&#39%3b%29;start=0;count=5?appid=myaipid.." rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(&#3...appid=myaipid..</a>.<br /><br /><br />i get zero results<br /><br />Lleida it's a catalonian, spanish province and also a city..<br /><br />I think it is a mistake]]></description>
		<pubDate>Sun, 27 Sep 2009 09:18:11 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2856</guid>
	</item>
	<item>
		<title>Lleida not found</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2856</link>
		<description><![CDATA[There was a syntax error:<br />400 Error : syntax error, unexpected ENDOFSEGMENT, expecting ')' or ',' at "places.q<br /><br />Remove the semicolon after Lleida, like:<br /><br /><a href="http://where.yahooapis.com/v1/places.q('Lleida&#39%3b%29;start=0;count=5?appid=YOUR_APPID" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(&#3...ppid=YOUR_APPID</a>]]></description>
		<pubDate>Sun, 27 Sep 2009 09:18:11 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2856</guid>
	</item>
	<item>
		<title>Describing Web service functionality,</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2788</link>
		<description><![CDATA[Dear all,<br /><br />Very often is very difficult to find one of the existint Web services on the network, because they are often poorely described. Hence, I would like to ask you for help in the experiment on collaborative tagging on Web services in geo domain. This will help me better in my Ph.D. research. It is sufficient to have knowledge and experience in programming and/or software engineering to participate in this experiment.<br /><br />How can you help? You can help by tagging and classifying Web services in a similar way like you or other people tag photos, pages etc. Just ask for your ID to participate in this experiment here <br /><br /><a href="http://mars.ing.unimo.it/wscolab/new.php" rel="nofollow" target="ext">http://mars.ing.unimo.it/wscolab/new.php</a><br /><br />How much time does it take? It's completely up to you. You don't have to do it at once, you may come back to the portal as many times as you want.<br /><br />I'm not claiming to be a competitor for ProgrammableWeb nor any other Web service registry. This is just for research purpose.<br /><br />If you have any questions, please contact me by e-mail (maciej [dot] gawinecki [at] unimore [dot] it).<br /><br />Thank you for your effort in advance,<br />Maciej Gawinecki<br />Ph.D. Student<br />University of Modena]]></description>
		<pubDate>Sun, 20 Sep 2009 23:46:16 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2788</guid>
	</item>
	<item>
		<title>Bug on GeoPlanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2653</link>
		<description><![CDATA[Hi,<br /><br />On all the queries related to any city in Oregon, the state code OR <b>isn't</b> returned in the response <b>when the language is FR</b> (I've tested more than 20 other languages, it works with each, BUT french).<br /><br />Query example:<br /><br /><a href="http://where.yahooapis.com/v1/places.q('portland" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q('portland</a> OR');start=0;count=5?format=xml&count=20&lang=fr<br /><br />Response:<br /><br />&lt;places yahoo:start="0" yahoo:count="1" yahoo:total="1"&gt;<br />−<br />&lt;place yahoo:uri="http://where.yahooapis.com/v1/place/2475687" xml:lang="fr"&gt;<br />&lt;woeid&gt;2475687&lt;/woeid&gt;<br />&lt;placeTypeName code="7"&gt;Ville&lt;/placeTypeName&gt;<br />&lt;name&gt;Portland&lt;/name&gt;<br />&lt;country type="Pays" code="US"&gt;États-Unis&lt;/country&gt;<br /><b>&lt;admin1 type="État" code=""&gt;Orégon&lt;/admin1&gt;</b><br />&lt;admin2 type="Comté" code=""&gt;Multnomah&lt;/admin2&gt;<br />&lt;admin3/&gt;<br />&lt;locality1 type="Ville"&gt;Portland&lt;/locality1&gt;<br />&lt;locality2/&gt;<br />&lt;postal/&gt;<br />−<br />&lt;centroid&gt;<br />&lt;latitude&gt;45.511791&lt;/latitude&gt;<br />&lt;longitude&gt;-122.675629&lt;/longitude&gt;<br />&lt;/centroid&gt;<br />−<br />&lt;boundingBox&gt;<br />−<br />&lt;southWest&gt;<br />&lt;latitude&gt;45.402851&lt;/latitude&gt;<br />&lt;longitude&gt;-122.867638&lt;/longitude&gt;<br />&lt;/southWest&gt;<br />−<br />&lt;northEast&gt;<br />&lt;latitude&gt;45.672829&lt;/latitude&gt;<br />&lt;longitude&gt;-122.457130&lt;/longitude&gt;<br />&lt;/northEast&gt;<br />&lt;/boundingBox&gt;<br />&lt;/place&gt;<br />&lt;/places&gt;<br /><br />Is it a temporary bug or should we be worried?<br /><br />BR<br />Cedric]]></description>
		<pubDate>Sun, 06 Sep 2009 06:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2653</guid>
	</item>
	<item>
		<title>Bug on GeoPlanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2653</link>
		<description><![CDATA[<b>Update</b>: I've tested the 50 US States, and please note that the bug also appear for every city in <b>SOUTH CAROLINA</b>.<br />This is very serious, as it is not even possible to write a quick&dirty fix, associating the blank state to Oregon.<br /><br />Please, let us know.<br /><br />Cedric]]></description>
		<pubDate>Sun, 06 Sep 2009 06:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2653</guid>
	</item>
	<item>
		<title>Bug on GeoPlanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2653</link>
		<description><![CDATA[Is there anyone from Yahoo! following this forum and the bugs reported?<br />If not, is there a better place to post bugs?<br /><br />Thanks,<br />Cedric]]></description>
		<pubDate>Sun, 06 Sep 2009 06:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2653</guid>
	</item>
	<item>
		<title>Bug on GeoPlanet</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2653</link>
		<description><![CDATA[<!--quoteo(post=7617:date=Sep 10 2009, 04&#58;41 AM:name=Cedric S)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Cedric S &#064; Sep 10 2009, 04&#58;41 AM) <a href="index.php?act=findpost&pid=7617"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Is there anyone from Yahoo! following this forum and the bugs reported?<br />If not, is there a better place to post bugs?<br /><br />Thanks,<br />Cedric<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />This issue has been reported as a bug, and we will work to get it fixed in the next production update.  Thank you for bringing this to our attention.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies]]></description>
		<pubDate>Sun, 06 Sep 2009 06:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2653</guid>
	</item>
	<item>
		<title>WOEID Info</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2649</link>
		<description><![CDATA[Wanted to do it very long ago, and finally crafted it yesterday - extremely simple web-app, which can show all (publicly) available information about certain WOEID, uses GeoPlanet via YQL.<br /><br /><a href="http://sigizmund.info/woeidinfo" rel="nofollow" target="ext">http://sigizmund.info/woeidinfo</a><br /><br />As an add-on bonus, you can also geocode some text using same page and see which results it'll produce.]]></description>
		<pubDate>Sat, 05 Sep 2009 00:25:18 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2649</guid>
	</item>
	<item>
		<title>WOEID Info</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2649</link>
		<description><![CDATA[Roman, that's pretty slick.  Thanks for sharing!<br /><br />Robyn Tippins<br />Community Manager, YDN]]></description>
		<pubDate>Sat, 05 Sep 2009 00:25:18 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2649</guid>
	</item>
	<item>
		<title>Wildcards in query by place name?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2338</link>
		<description><![CDATA[Is there a way to do wildcards in the .q placename search? For example, if I search for "chicag,US" return Chicago. Basically, implied "starts with"?]]></description>
		<pubDate>Wed, 05 Aug 2009 21:00:00 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2338</guid>
	</item>
	<item>
		<title>Wildcards in query by place name?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2338</link>
		<description><![CDATA[There is currently no way to include wildcards in place names.  The volume of data that could be returned for some queries (e.g. "a*") would use up much bandwidth and cpu time.  We are looking into ways to handle misspellings and truncations, if that would help you.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=6768:date=Aug 5 2009, 08&#58;00 PM:name=dkf2112)--><div class='quote'><div class='quotetop'>QUOTE <cite>(dkf2112 &#064; Aug 5 2009, 08&#58;00 PM) <a href="index.php?act=findpost&pid=6768"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Is there a way to do wildcards in the .q placename search? For example, if I search for "chicag,US" return Chicago. Basically, implied "starts with"?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Wed, 05 Aug 2009 21:00:00 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2338</guid>
	</item>
	<item>
		<title>Geoplanet data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2202</link>
		<description><![CDATA[Hi guys,<br /><br />Any ideas when the geoplanet dataset will return to its home page at <a href="http://developer.yahoo.com/geo/geoplanet/data/" rel="nofollow" target="ext">http://developer.yahoo.com/geo/geoplanet/data/</a> ?<br />Can you provide access to the old set in the meantime?<br /><br />Thanks for the help in advance!]]></description>
		<pubDate>Thu, 23 Jul 2009 02:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2202</guid>
	</item>
	<item>
		<title>Geoplanet data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2202</link>
		<description>Yup, I could really do with this data as well. Any idea when it will be available? Seems silly to have the page there with the data removed.</description>
		<pubDate>Thu, 23 Jul 2009 02:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2202</guid>
	</item>
	<item>
		<title>Geoplanet data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2202</link>
		<description><![CDATA[i realy wish to have more information about this. i've a project pending which is mostly dependend on this data. at least if a have an estimates time and data structure i'll be fine.]]></description>
		<pubDate>Thu, 23 Jul 2009 02:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2202</guid>
	</item>
	<item>
		<title>Geoplanet data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2202</link>
		<description><![CDATA[<!--quoteo(post=6343:date=Jul 23 2009, 01&#58;59 AM:name=manpreets7)--><div class='quote'><div class='quotetop'>QUOTE <cite>(manpreets7 &#064; Jul 23 2009, 01&#58;59 AM) <a href="index.php?act=findpost&pid=6343"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Any ideas when the geoplanet dataset will return to its home page at <a href="http://developer.yahoo.com/geo/geoplanet/data/" rel="nofollow" target="ext">http://developer.yahoo.com/geo/geoplanet/data/</a> ?<br />Can you provide access to the old set in the meantime?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />Still no news on this. Is there any timescale on availability of the new data file, or a link to access the old files?<br /><br />Many thanks.]]></description>
		<pubDate>Thu, 23 Jul 2009 02:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2202</guid>
	</item>
	<item>
		<title>Geoplanet data</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2202</link>
		<description><![CDATA[It's back. See here:<br /><a href="http://www.ygeoblog.com/2009/10/wheres-my-data-ah-there-it-is/" rel="nofollow" target="ext">http://www.ygeoblog.com/2009/10/wheres-my-...ah-there-it-is/</a>]]></description>
		<pubDate>Thu, 23 Jul 2009 02:59:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2202</guid>
	</item>
	<item>
		<title>appid becomes invalid</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2177</link>
		<description><![CDATA[Hi - I am using the php geoplanet wrapper and developing an app.  As far as I'm aware there is no way I'm hitting the 50K a day request limit.<br /><br />However, my app starts processing my data and then, part way through, fails with:  A valid appid parameter is required for this resource.  The appid parameter has been valid for previous requests and then appears to become invalid.<br /><br />Has anyone else seen this?  Is it a known issue?  Or have I just done something really stupid?!<br /><br />Thanks for any suggestions!<br />Alex]]></description>
		<pubDate>Tue, 21 Jul 2009 00:57:45 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2177</guid>
	</item>
	<item>
		<title>GeoMaker</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2175</link>
		<description><![CDATA[This is a thread about <a href="http://icant.co.uk/geomaker" rel="nofollow" target="ext">GeoMaker</a> where you can give feedback and ask for advice from both the developer and the Geo team.]]></description>
		<pubDate>Sun, 19 Jul 2009 04:13:25 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2175</guid>
	</item>
	<item>
		<title>GeoMaker</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2175</link>
		<description><![CDATA[Hi Guys,<br /><br />Pretty slick looking -- Quick question, is it possible for GeoMaker to take a feed with Lat/Long and plot it?  I played around a bit tonight and it doesn't seem to want to do it.<br /><br />-John]]></description>
		<pubDate>Sun, 19 Jul 2009 04:13:25 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2175</guid>
	</item>
	<item>
		<title>Misspelled names</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2456</link>
		<description><![CDATA[<!--quoteo(post=266:date=Aug 11 2008, 01&#58;18 AM:name=Vicchi)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Vicchi &#064; Aug 11 2008, 01&#58;18 AM) <a href="index.php?act=findpost&pid=266"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Welcome to the Enhancement Requests board for Yahoo! GeoPlanet. This is the place to post requests for ways in which we can enhance and improve the product. Before posting a new request, please take a moment to look through the board, explain what the request is and why it's important to you and limit one request per post to enable us to track stuff more effectively.<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />I find a misspelt place name in Yahoo maps. The place listed as "Halapada" (near "Talasari") in India is actually "Haladpada". This has been lately further split into two, viz. "Haladpada" and "Bandhan".<br /><br />Can you make appropriate changes?<br /><br />Thanks,<br /><br />Hareesh]]></description>
		<pubDate>Thu, 16 Jul 2009 23:43:28 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2456</guid>
	</item>
	<item>
		<title>Misspelled names</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=2456</link>
		<description><![CDATA[Can you provide a source for these names?  I've checked a number of sources, and can't find any references for Haladpada or Bandhan.  In fact, Google, Bing, and Mapquest can't find any places near these towns.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=6156:date=Jul 16 2009, 10&#58;43 PM:name=Hareesh V)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Hareesh V &#064; Jul 16 2009, 10&#58;43 PM) <a href="index.php?act=findpost&pid=6156"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->I find a misspelt place name in Yahoo maps. The place listed as "Halapada" (near "Talasari") in India is actually "Haladpada". This has been lately further split into two, viz. "Haladpada" and "Bandhan".<br /><br />Can you make appropriate changes?<br /><br />Thanks,<br /><br />Hareesh<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Thu, 16 Jul 2009 23:43:28 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=2456</guid>
	</item>
	<item>
		<title>Yahoo Placemaker: does inputting latitude, longitude focus results?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1998</link>
		<description><![CDATA[I often  need to fetch a town for a given (raw) address. Sometimes I also have latitude / longitude fields, which could potentially focus the results outputted by Placemaker. <br /><br />The reference suggests that latitude / longitude can be used in conjunction with the text inputted. <br />specifically: <br /><a href="http://developer.yahoo.com/geo/placemaker/guide/api-reference.html" rel="nofollow" target="ext">http://developer.yahoo.com/geo/placemaker/...-reference.html</a> states that the 'matchType' output-param indicates if: <br />type of match (0=text or text and coordinates, 1=coordinates only) <br /><br />However, when supplying lat/ long as part of the text, I don't see a difference in processing results (I made sure to check on some ambiguous example) . <br /><br />Question: is there a way to use lat/ long to focus the results that Placemaker outputs? <br /><br />Thanks, <br />Britske]]></description>
		<pubDate>Wed, 01 Jul 2009 04:05:23 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1998</guid>
	</item>
	<item>
		<title>Yahoo Placemaker: does inputting latitude, longitude focus results?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1998</link>
		<description><![CDATA[Britske,<br /><br />You can use a WOEID to statistically bias the geo/geo disambiguation process -- we call this a focus, but not in the way you intend:<br /><a href="http://developer.yahoo.com/geo/placemaker/guide/api_docs.html" rel="nofollow" target="ext">http://developer.yahoo.com/geo/placemaker/...e/api_docs.html</a><br /><br />Specifically in regards to your use case: you can pass the address to Placemaker which will return the WOEID of the smallest recognized entity therein (usually the postcode).  You can then pass this WOEID to GeoPlanet to extract the town (or any other element) by filtering the hierarchy of that entity.<br /><br />Placemaker does not recognize raw coordinates in text, but it will recognize coordinates in structured contexts: microformats and meta tags.<br /><br />TB]]></description>
		<pubDate>Wed, 01 Jul 2009 04:05:23 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1998</guid>
	</item>
	<item>
		<title>Yahoo Placemaker: does inputting latitude, longitude focus results?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1998</link>
		<description><![CDATA[TB,<br /><br />could you point me to some documentation as what metatags to include that would recognize the coordinates? <br />I could easily transform the plaintext to xml and inlude the coords in a particular tag, but I can't seem to find the xml-format needed. <br /><br />Thanks, <br />Britske<br /><br /><!--quoteo(post=5747:date=Jul 1 2009, 02&#58;11 PM:name=TyB)--><div class='quote'><div class='quotetop'>QUOTE <cite>(TyB &#064; Jul 1 2009, 02&#58;11 PM) <a href="index.php?act=findpost&pid=5747"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Britske,<br /><br />You can use a WOEID to statistically bias the geo/geo disambiguation process -- we call this a focus, but not in the way you intend:<br /><a href="http://developer.yahoo.com/geo/placemaker/guide/api_docs.html" rel="nofollow" target="ext">http://developer.yahoo.com/geo/placemaker/...e/api_docs.html</a><br /><br />Specifically in regards to your use case: you can pass the address to Placemaker which will return the WOEID of the smallest recognized entity therein (usually the postcode).  You can then pass this WOEID to GeoPlanet to extract the town (or any other element) by filtering the hierarchy of that entity.<br /><br />Placemaker does not recognize raw coordinates in text, but it will recognize coordinates in structured contexts: microformats and meta tags.<br /><br />TB<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Wed, 01 Jul 2009 04:05:23 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1998</guid>
	</item>
	<item>
		<title>Yahoo Placemaker: does inputting latitude, longitude focus results?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1998</link>
		<description><![CDATA[See <a href="http://www.w3.org/2003/01/geo/" rel="nofollow" target="ext">http://www.w3.org/2003/01/geo/</a><br /><br />These should also work:<br /><br />Geo Microformats:<br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->     <br />&#60;p class=&#34;geo&#34;&#62;Lat/Lon&#58; <br />  &#60;span class=&#34;latitude&#34;&#62;50.827917&#60;/span&#62;, <br />  &#60;span class=&#34;longitude&#34;&#62;-0.137764&#60;/span&#62;<br />&#60;/p&#62;<!--c2--></code></pre></div><!--ec2--><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->    <br />&#60;div class=&#34;geo&#34;&#62;<br /> &#60;abbr class=&#34;latitude&#34; title=&#34;37.408183&#34;&#62;N 37 24.491&#60;/abbr&#62; <br /> &#60;abbr class=&#34;longitude&#34; title=&#34;-122.13855&#34;&#62;W 122 08.313&#60;/abbr&#62;<br />&#60;/div&#62;<!--c2--></code></pre></div><!--ec2--><br /><br />Address Microformats:<br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;p class=&#34;address&#34;&#62;<br />   &#60;span class=&#34;street&#34;&#62;4 Pear Treet Court&#60;/span&#62;<br />   &#60;span class=&#34;city&#34;&#62;London&#60;/span&#62;<br />   &#60;span class=&#34;country&#34;&#62;United Kingdom&#60;/span&#62;<br />&#60;/p&#62;<!--c2--></code></pre></div><!--ec2--><br /><br />HTML Header Meta Tags (ICBM and geo):<br /><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;meta name=&#34;ICBM&#34; content=&#34;50.167958, -97.133185&#34;&#62;<!--c2--></code></pre></div><!--ec2--><br /><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;icbm&#58;latitude&#62;60.4780&#60;/icbm&#58;latitude&#62;<br />&#60;icbm&#58;longitude&#62;-152.4355&#60;/icbm&#58;longitude&#62;<!--c2--></code></pre></div><!--ec2--><br /><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;META NAME=&#34;geo.position&#34; CONTENT=&#34;49.2;-123.4&#34;&#62;  //lat, long<!--c2--></code></pre></div><!--ec2--><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;META NAME=&#34;geo.placename&#34; CONTENT=&#34;London, Ontario&#34;&#62;<!--c2--></code></pre></div><!--ec2--><br /><!--c1--><div class='code generic'><div class='codetop'>CODE</div><pre class='codemain'><code><!--ec1-->&#60;META NAME=&#34;geo.region&#34; CONTENT=&#34;CA-ON&#34;&#62; //ISO 3166-2 country subdivs<!--c2--></code></pre></div><!--ec2-->]]></description>
		<pubDate>Wed, 01 Jul 2009 04:05:23 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1998</guid>
	</item>
	<item>
		<title>Same location having different GEOID</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1970</link>
		<description><![CDATA[Hi all,<br /><br />I recently downloaded geo planet data and figured out that same location (Same Name, Same ISO_Country_CODE, Same Language) are having different WOEIDs. Is this possible?<br /><br />For ex: WOEID  |  COUNTRY_CODE   | Name             | Lang   |Place Type| Parent_ID <br />             1010369 | "MM"                            | "Thongwa"     | ENG      | Town      | 2344823   | <br />             1017918  | "MM"                           | "Thongwa"     | ENG      | Town      | 2344823<br /><br />I found 130K such entries for Place Type='Town'<br /><br />Kindly clarify.<br /><br />Thanks<br />Pallavi]]></description>
		<pubDate>Mon, 29 Jun 2009 04:34:01 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1970</guid>
	</item>
	<item>
		<title>Same location having different GEOID</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1970</link>
		<description><![CDATA[It is possible for two places within a country to have the same name.  There are 79 Springfields in the United States.  Two places with the same name should not have the same parent as in your example, so this looks like a bug.  I'll have someone look into this issue.<br /><br />Eddie Babcock<br />Y! Geo Technologies<br /><br /><!--quoteo(post=5668:date=Jun 29 2009, 03&#58;34 AM:name=Pallavi R)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Pallavi R &#064; Jun 29 2009, 03&#58;34 AM) <a href="index.php?act=findpost&pid=5668"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi all,<br /><br />I recently downloaded geo planet data and figured out that same location (Same Name, Same ISO_Country_CODE, Same Language) are having different WOEIDs. Is this possible?<br /><br />For ex: WOEID  |  COUNTRY_CODE   | Name             | Lang   |Place Type| Parent_ID <br />             1010369 | "MM"                            | "Thongwa"     | ENG      | Town      | 2344823   | <br />             1017918  | "MM"                           | "Thongwa"     | ENG      | Town      | 2344823<br /><br />I found 130K such entries for Place Type='Town'<br /><br />Kindly clarify.<br /><br />Thanks<br />Pallavi<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Mon, 29 Jun 2009 04:34:01 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1970</guid>
	</item>
	<item>
		<title>Radius Search</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1926</link>
		<description><![CDATA[Hello,<br /><br />I posted in the General Discussion forum about a radius search feature (http://developer.yahoo.net/forum/index.php?showtopic=1879), and was directed here to make an enhancement request.  While I understand your point, there are use cases where a radius search is preferable.<br /><br />For example, take Manhattan, New York.  There are many small zip code regions.  A given region may only have a limited number of neighbors, however, I'd like to see all the zip codes within reasonable walking distance (say 1 mile).  This area may span multiple zip codes, and thus a neighbor search is insufficient.<br /><br />Jon]]></description>
		<pubDate>Mon, 22 Jun 2009 12:19:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1926</guid>
	</item>
	<item>
		<title><![CDATA[what's "name type" field in geoplanet_aliases_7.2.tsv file?]]></title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1906</link>
		<description><![CDATA[Hi,<br />I've download this file "geoplanet_aliases_7.2.tsv" to get name of place in more language but I don't understand the meaning of this field "name type".<br />Could you help me?<br /><br />Thanks!]]></description>
		<pubDate>Sat, 20 Jun 2009 03:11:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1906</guid>
	</item>
	<item>
		<title><![CDATA[what's "name type" field in geoplanet_aliases_7.2.tsv file?]]></title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1906</link>
		<description><![CDATA[There are four name types in GeoPlanet Data:<br /><br /><ul><li>Q (qualified name): this name is the preferred name for the place in a language different than that used by residents of the place (e.g. "紐約" for New York)</li><li>V (variation): this name is a well-known (but unofficial) name for the place (e.g. "New York City" for New York)</li><li>A (abbreviation): this name is a abbreviation or code for the place (e.g. "NYC" for New York)</li><li>S (synonym): this name is a colloquial name for the place (e.g. "Big Apple" for New York)</li></ul><br /><br />There will be only one Q name for a place in a given language.  If there is no Q name for a given language, the name in the geoplanet_aliases file should be used.  There may be multiple variations, abbreviations, and synonyms for a place.  These can be used for recognition, but should not be displayed.  <br /><br />Eddie Babcock<br />Y! Geo Technologies<br /><br /><!--quoteo(post=5498:date=Jun 20 2009, 02&#58;11 AM:name=abaddonhouse)--><div class='quote'><div class='quotetop'>QUOTE <cite>(abaddonhouse &#064; Jun 20 2009, 02&#58;11 AM) <a href="index.php?act=findpost&pid=5498"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi,<br />I've download this file "geoplanet_aliases_7.2.tsv" to get name of place in more language but I don't understand the meaning of this field "name type".<br />Could you help me?<br /><br />Thanks!<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Sat, 20 Jun 2009 03:11:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1906</guid>
	</item>
	<item>
		<title><![CDATA[what's "name type" field in geoplanet_aliases_7.2.tsv file?]]></title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1906</link>
		<description><![CDATA[Thanks!<br /><br />I've only one question again <img src="http://developer.yahoo.net/forum/style_emoticons/default/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> I've find some alias with this name type "P". What's P?<br /><br />Many thanks<br /><br />Bye<br /><br /> <!--quoteo(post=5536:date=Jun 22 2009, 09&#58;12 AM:name=Eddie B)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Eddie B &#064; Jun 22 2009, 09&#58;12 AM) <a href="index.php?act=findpost&pid=5536"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->There are four name types in GeoPlanet Data:<br /><ul><li>Q (qualified name): this name is the preferred name for the place in a language different than that used by residents of the place (e.g. "紐約" for New York)</li><li>V (variation): this name is a well-known (but unofficial) name for the place (e.g. "New York City" for New York)</li><li>A (abbreviation): this name is a abbreviation or code for the place (e.g. "NYC" for New York)</li><li>S (synonym): this name is a colloquial name for the place (e.g. "Big Apple" for New York)</li></ul><!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Sat, 20 Jun 2009 03:11:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1906</guid>
	</item>
	<item>
		<title><![CDATA[what's "name type" field in geoplanet_aliases_7.2.tsv file?]]></title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1906</link>
		<description><![CDATA[The P (English preferred) name type is similar to the Q name type, except that it applies only to the English language.  If you want to display the English name for a place and there is no P name, use the name from the geoplanet_places file.<br /><br />Eddie Babcock<br />Y! Geo Technologies<br /><br /><!--quoteo(post=5548:date=Jun 22 2009, 12&#58;35 PM:name=abaddonhouse)--><div class='quote'><div class='quotetop'>QUOTE <cite>(abaddonhouse &#064; Jun 22 2009, 12&#58;35 PM) <a href="index.php?act=findpost&pid=5548"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Thanks!<br /><br />I've only one question again <img src="http://developer.yahoo.net/forum/style_emoticons/default/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> I've find some alias with this name type "P". What's P?<br /><br />Many thanks<br /><br />Bye<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Sat, 20 Jun 2009 03:11:29 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1906</guid>
	</item>
	<item>
		<title>Radius Search</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1879</link>
		<description><![CDATA[Is there anyway to get a list of locations within a radius of a given location?  I am aware of the 'neighbors' functionality, but it does not let me specify a radius or level of granularity.<br /><br />Any ideas?<br /><br />Jon]]></description>
		<pubDate>Wed, 17 Jun 2009 14:44:03 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1879</guid>
	</item>
	<item>
		<title>Radius Search</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1879</link>
		<description><![CDATA[There is no radius search capability in GeoPlanet.  We think the neighbor functionality provides better results than a radius search.  A radius search can only find places whose centers are within the circle defined by the query point and radius.  The neighbor resource returns all places that are adjacent or nearby to a given place.  It doesn't matter if the place is small or large.<br /><br />If you think you have a use case where a radius search is required, please create a topic in the GeoPlanet Enhancement Request Forum.<br /><br />Eddie Babcock<br />Y! Geo Technologies<br /><br /><!--quoteo(post=5433:date=Jun 17 2009, 01&#58;44 PM:name=reflexionsjon)--><div class='quote'><div class='quotetop'>QUOTE <cite>(reflexionsjon &#064; Jun 17 2009, 01&#58;44 PM) <a href="index.php?act=findpost&pid=5433"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Is there anyway to get a list of locations within a radius of a given location?  I am aware of the 'neighbors' functionality, but it does not let me specify a radius or level of granularity.<br /><br />Any ideas?<br /><br />Jon<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Wed, 17 Jun 2009 14:44:03 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1879</guid>
	</item>
	<item>
		<title>Missing and new places</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1756</link>
		<description><![CDATA[Have you noticed that GeoPlanet doesn't recognize your neighborhood, postal code, or favorite tourist attraction?  Would you like to see these places added to a future release of GeoPlanet?  If so, post a reply to this topic with information about any places you would like GeoPlanet to recognize.  All suggestions will be reviewed for inclusion in our named place repository that is used by both GeoPlanet and Placemaker, our geo-enrichment web service.<br /><br />What we are looking for is source material that describes the place mentioned.  For each place we need to know the following information:<br /><br />Place name (e.g. Chinatown)<br />Place type (e.g. Neighborhood)<br />Location (coordinates or containing place)<br />URL that mentions the place name in context (optional)<br /><br />If you know of a source that contains multiple places, you don't need to provide information about every place; the URL will be sufficient.]]></description>
		<pubDate>Fri, 05 Jun 2009 10:02:27 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1756</guid>
	</item>
	<item>
		<title>Missing and new places</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1756</link>
		<description><![CDATA[Example Place Add Request:<br /><br />Place name: England and Wales<br />Place type: Colloquial<br />Location: collection of England and Wales<br />URL: <a href="http://en.wikipedia.org/wiki/England_and_Wales" rel="nofollow" target="ext">http://en.wikipedia.org/wiki/England_and_Wales</a>]]></description>
		<pubDate>Fri, 05 Jun 2009 10:02:27 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1756</guid>
	</item>
	<item>
		<title>Adding suburbs</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1730</link>
		<description><![CDATA[Hi,<br /><br />Is there an official way of suggesting new places to be added?<br /><br />If not, can I suggest a few suburbs to be added to Manchester (WOEID 10180)?<br /><br />* Northern Quarter<br />* Spinningfields<br />* Petersfield<br />* The [Gay] Village<br /><br />These are all well-used by locals, and referred to on official tourism maps (eg see <a href="http://www.visitmanchester.com/maps.aspx)" rel="nofollow" target="ext">http://www.visitmanchester.com/maps.aspx)</a>. Some of them are quite small, but then so is Chinatown (WOEID 20094373), which is really just a single street.<br /><br />Frankie]]></description>
		<pubDate>Wed, 03 Jun 2009 00:11:26 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1730</guid>
	</item>
	<item>
		<title>Adding suburbs</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1730</link>
		<description><![CDATA[We currently don't have a tool for users to submit information about missing or new places, but we are looking into providing such a tool.  Until then, feel free to add them to this topic, and we will include as many as possible to our next release of GeoPlanet.  Providing a link to source material helps us to determine the boundaries and relationships for places.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=5044:date=Jun 2 2009, 11&#58;11 PM:name=Frankie)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Frankie &#064; Jun 2 2009, 11&#58;11 PM) <a href="index.php?act=findpost&pid=5044"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Hi,<br /><br />Is there an official way of suggesting new places to be added?<br /><br />If not, can I suggest a few suburbs to be added to Manchester (WOEID 10180)?<br /><br />* Northern Quarter<br />* Spinningfields<br />* Petersfield<br />* The [Gay] Village<br /><br />These are all well-used by locals, and referred to on official tourism maps (eg see <a href="http://www.visitmanchester.com/maps.aspx)" rel="nofollow" target="ext">http://www.visitmanchester.com/maps.aspx)</a>. Some of them are quite small, but then so is Chinatown (WOEID 20094373), which is really just a single street.<br /><br />Frankie<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Wed, 03 Jun 2009 00:11:26 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1730</guid>
	</item>
	<item>
		<title>Adding suburbs</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1730</link>
		<description><![CDATA[<!--quoteo--><div class='quote'><div class='quotetop'>QUOTE <cite></cite></div><blockquote class='quotemain'><!--quotec-->We currently don't have a tool for users to submit information about missing or new places, but we are looking into providing such a tool. Until then, feel free to add them to this topic, and we will include as many as possible to our next release of GeoPlanet. Providing a link to source material helps us to determine the boundaries and relationships for places.<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />Great that you're planning on adding a tool to enable this.<br /><br />It'd be great if the suburbs I mentioned above could be added - I'll have a think about any others that are missing (and sources for them).<br /><br />Frankie]]></description>
		<pubDate>Wed, 03 Jun 2009 00:11:26 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1730</guid>
	</item>
	<item>
		<title>inconsistent woeId (sometimes classified as town and sometimes as suburb)</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1625</link>
		<description><![CDATA[hi, <br /><br />I was testing out the new Yahoo placemaker (which is awesome btw!) in conjuction with GeoPlanet API. <br />For the following address I would like to fetch the name and woeId of the town the address is in. However, I can't get consistent results (The entity with woeid=746086 is either considered a suburb or a town depending on the flow I'm using to get the result). <br />Im wondering if this is a sporadic error in the dataset or that there is some underlying logic that I'm missing?<br /><br />to reproduce: <br /><br />I have the address:Praia+Nossa+Senhora+da+Rocha+Porches+Algarve+PT-8400-450+portugal<br />which consists of a partial street name, suburb (Porches), province (Algarve), postalcode and country.  <br />The format of this address and others that I need to parse are horribly inconsistent so I'm thrilled that placemaker is doing a gret job distilling the info to: <br /><br />...<br />&lt;woeId&gt;23424925&lt;/woeId&gt;<br />&lt;type&gt;Country&lt;/type&gt;<br />&lt;name&gt;&lt;![CDATA[Portugal]]&gt;&lt;/name&gt;<br />...<br />&lt;woeId&gt;26180815&lt;/woeId&gt;<br />&lt;type&gt;Zip&lt;/type&gt;<br />&lt;name&gt;&lt;![CDATA[8400 - 450, Porches, Faro, PT]]&gt;&lt;/name&gt;<br />.....<br /><br />in other words a Zip is found, but at a parent level only the country is shown (not the town and / or province) .<br />using geoplanet to look up the parent (http://where.yahooapis.com/v1/place/26180815/...) gives: <br /><br />...<br />&lt;locality1 type="Town"&gt;Lagoa&lt;/locality1&gt;<br />&lt;locality2 type="Suburb"&gt;Porches&lt;/locality2&gt;<br />&lt;postal type="Postal Code"&gt;8400 - 450&lt;/postal&gt;<br />..<br /><br />indicating the Town Lagoa and the subsurb Porches. <br /><br />To verify I checked the above address but without the postal code in placeMaker: <br />Praia+Nossa+Senhora+da+Rocha+Porches+Algarve+portugal, giving: <br /><br />...<br />&lt;woeId&gt;746086&lt;/woeId&gt;<br />&lt;type&gt;Town&lt;/type&gt;<br />&lt;name&gt;&lt;![CDATA[Porches, Faro, PT]]&gt;&lt;/name&gt;<br />...<br /><br />indicating that instead of Lagoa, Porches is considered the town --&gt; inconsistency <br /><br />verifying using geoplanet Parent-service, gives: <br />...<br />&lt;country type="Country" code="PT"&gt;Portugal&lt;/country&gt;<br />&lt;admin1 type="State" code="PT-08"&gt;Faro&lt;/admin1&gt;<br />&lt;admin2 type="County" code=""&gt;Lagoa&lt;/admin2&gt;<br />&lt;admin3/&gt;<br />&lt;locality1 type="Town"&gt;Porches&lt;/locality1&gt;<br />&lt;locality2/&gt;<br />&lt;postal type="Postal Code"&gt;8400&lt;/postal&gt;<br />...<br /><br />confirming that Porches is considered a town in this case. <br /><br />I'm aware that classifying municipalities, civil parishes and similar entities used over the world are impossible to classify 100% correctly as either a town or a suburb but shouldn't both cases at least produce the same result for Porches? Thus either is should be considered a Town or a suburb but not both depending on the path traversed to get to the result?<br /><br />Im wondering if this is a sporadic error in the dataset or that there is some underlying logic that I'm missing?<br /><br />thanks in advance,<br />Britske]]></description>
		<pubDate>Mon, 25 May 2009 12:26:54 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1625</guid>
	</item>
	<item>
		<title>inconsistent woeId (sometimes classified as town and sometimes as suburb)</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1625</link>
		<description><![CDATA[The response returned for WOEID 26180815 is incorrect.  Porches should be returned in the locality1 element as it is for WOEID 746086.  This will be corrected in the next update to our production environment (expected later this month).<br /><br />Regarding the separate placeDetails results from Placemaker, this looks like a bug.  Placemaker should return just one placeDetail for the postal code.  I will investigate further.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=4800:date=May 25 2009, 11&#58;26 AM:name=gbrits27)--><div class='quote'><div class='quotetop'>QUOTE <cite>(gbrits27 &#064; May 25 2009, 11&#58;26 AM) <a href="index.php?act=findpost&pid=4800"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->hi, <br /><br />I was testing out the new Yahoo placemaker (which is awesome btw!) in conjuction with GeoPlanet API. <br />For the following address I would like to fetch the name and woeId of the town the address is in. However, I can't get consistent results (The entity with woeid=746086 is either considered a suburb or a town depending on the flow I'm using to get the result). <br />Im wondering if this is a sporadic error in the dataset or that there is some underlying logic that I'm missing?<br /><br />...<br /><br />thanks in advance,<br />Britske<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Mon, 25 May 2009 12:26:54 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1625</guid>
	</item>
	<item>
		<title>Lakes, Rivers and Streams?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1611</link>
		<description><![CDATA[Maybe I didn't see it, but does the GeoPlanet data contain lakes, rivers and streams?<br /><br />I tried querying for a few but don't get anything back?]]></description>
		<pubDate>Sat, 23 May 2009 05:13:21 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1611</guid>
	</item>
	<item>
		<title>Lakes, Rivers and Streams?</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1611</link>
		<description><![CDATA[<!--quoteo(post=4776:date=May 23 2009, 04&#58;13 AM:name=erickub)--><div class='quote'><div class='quotetop'>QUOTE <cite>(erickub &#064; May 23 2009, 04&#58;13 AM) <a href="index.php?act=findpost&pid=4776"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Maybe I didn't see it, but does the GeoPlanet data contain lakes, rivers and streams?<br /><br />I tried querying for a few but don't get anything back?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />GeoPlanet contains some natural geographic features and we'll be expanding our reach and coverage of these in future data updates.<br /><br />-Gary]]></description>
		<pubDate>Sat, 23 May 2009 05:13:21 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1611</guid>
	</item>
	<item>
		<title>How to get WOEID for DMA</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1420</link>
		<description><![CDATA[Hi,<br /><br />I have geography names for DMA, i want to get corresponding WOEID from yahoo using Yahoo Geo planet REST query.<br /><br />ex: DMA Los Angeles<br /><br />what is the query for this:<br />i am trying with :<br /><a href="http://where.yahooapis.com/v1/places$and(.q(DMA" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places$and(.q(DMA</a> Los Angeles),.type(28));count=1?appid=appidhere<br /><a href="http://where.yahooapis.com/v1/places$and(.q(DMA+Los+Angeles),.type(DMA));count=1?appid=appidhere%5dhttp://where.yahooapis.com/v1/places$and(....appidhere%5b/url%5d%5burl="http://where.yahooapis.com/v1/places$and(.q(Los+Angeles),.type(DMA));count=1?appid=appidhere" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places$and(....appidhere</a><br /><br />but no use, i am getting no results. can someone please help me.<br /><br />thanks in advance]]></description>
		<pubDate>Thu, 07 May 2009 16:38:34 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1420</guid>
	</item>
	<item>
		<title>How to get WOEID for DMA</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1420</link>
		<description><![CDATA[Hi Vangapandu,<br /><br />GeoPlanet does not currently include DMAs; they are on the enhancement list as we'd like to see them in the API too.<br /><br />Tyler]]></description>
		<pubDate>Thu, 07 May 2009 16:38:34 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1420</guid>
	</item>
	<item>
		<title>How to get WOEID for DMA</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1420</link>
		<description><![CDATA[(I've removed your appid from your examples; avoid posting this on public forums)<br /><br />- T]]></description>
		<pubDate>Thu, 07 May 2009 16:38:34 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1420</guid>
	</item>
	<item>
		<title>PlaceType names discrepancy</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1378</link>
		<description><![CDATA[I just started using the GeoPlanet API yesterday and have some confusion about the names returned by /placetypes and the named/value pairs returned by /place/{woeid}/children. This is the list of current values returned back to me by the /placetypes operation:<br /><br />0 =&gt; Undefined<br />1 =&gt; Building<br />2 =&gt; Street Segment<br />3 =&gt; Nearby Building<br />4 =&gt; Street<br />5 =&gt; Intersection<br />6 =&gt; Street<br />7 =&gt; Town<br />8 =&gt; State<br />9 =&gt; County<br />10 =&gt; Local Administrative Area<br />11 =&gt; Postal Code<br />12 =&gt; Country<br />13 =&gt; Island<br />14 =&gt; Airport<br />15 =&gt; Drainage<br />16 =&gt; Land Feature<br />17 =&gt; Miscellaneous<br />18 =&gt; Nationality<br />19 =&gt; Supername<br />20 =&gt; Point of Interest<br />21 =&gt; Region<br />22 =&gt; Suburb<br />23 =&gt; Sports Team<br />24 =&gt; Colloquial<br />25 =&gt; Zone<br />26 =&gt; Historical State<br />27 =&gt; Historical County<br />29 =&gt; Continent<br />31 =&gt; Time Zone<br />32 =&gt; Nearby Intersection<br />33 =&gt; Estate<br />35 =&gt; Historical Town<br />36 =&gt; Aggregate<br /><br />An example array of values passed back from the /place/{woeid}/children operation is:<br /><br />Array<br />    (<br />        [woeid] =&gt; 12773671<br />        [placeTypeName] =&gt; Zip Code<br />        [name] =&gt; 36758<br />        [country] =&gt; United States<br />        [admin1] =&gt; Alabama<br />        [admin2] =&gt; Autauga<br />        [admin3] =&gt;<br />        [locality1] =&gt; Plantersville<br />        [locality2] =&gt;<br />        [postal] =&gt; 36758<br />        [centroid] =&gt; Array<br />            (<br />                [lat] =&gt; 32.618469<br />                [lng] =&gt; -86.890999<br />            )<br /><br />        [boundingBox] =&gt; Array<br />            (<br />                [southWest] =&gt; Array<br />                    (<br />                        [lat] =&gt; 32.52652<br />                        [lng] =&gt; -87.010468<br />                    )<br /><br />                [northEast] =&gt; Array<br />                    (<br />                        [lat] =&gt; 32.71043<br />                        [lng] =&gt; -86.771523<br />                    )<br /><br />            )<br />    )<br /><br />My confusion lies with the fact that the sample returned array of values from the /place/{woeid}/children has the placeTypeName listed as 'Zip Code', yet (technically) there is no 'Zip Code' value coming back from the /placetypes operation. If I simply have to match up 'Zip Code' in the /place/{woeid}/children to the 'Postal Code' in /placetypes, I can make that adjustable.  Can anyone confirm this and/or justify why there is this discrepancy? Or am I missing some bit of information to understand this?]]></description>
		<pubDate>Tue, 05 May 2009 05:17:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1378</guid>
	</item>
	<item>
		<title>PlaceType names discrepancy</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1378</link>
		<description><![CDATA[Actually, there was some confusion on my end about the 'Zip Code' and 'Postal Code'. But there does seem to be some inconsistency with the /placetypes returning 'State' and the /place/{woeid}/children returning 'Province' as the placeTypeName. Are 'State' and 'Province' used synonymously in GeoPlanet for placeTypeNames?]]></description>
		<pubDate>Tue, 05 May 2009 05:17:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1378</guid>
	</item>
	<item>
		<title>PlaceType names discrepancy</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1378</link>
		<description><![CDATA[Placetype names returned by /place resources may be specific to the country associated with the place (e.g. Zip Code for US, Postal Code for CA) and the requested language (e.g. Zip Code for US, Code postal for CA in French); countries have different names for some placetypes, such as administrative areas.  This is to facilitate the display of these names within a client application.  Placetype names returned by /placetypes are generic because country is not a query parameter (though we decided to use "State" and "County" instead of the more generic "Admin1" and "Admin2").  Some placetype names have different meaning in some countries.  For example, a Province in Canada is a top-level admin area (Admin1), while a Province in Italy is a second-level admin area (Admin2).<br /><br />The placetype codes (which appear as attributes on the placeTypeName element) do not differ from country to country and should be used for any placetype comparisons.<br /><br />Eddie Babcock<br />Yahoo! Geo Technologies<br /><br /><!--quoteo(post=4158:date=May 5 2009, 04&#58;26 AM:name=Daniel S)--><div class='quote'><div class='quotetop'>QUOTE <cite>(Daniel S &#064; May 5 2009, 04&#58;26 AM) <a href="index.php?act=findpost&pid=4158"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->Actually, there was some confusion on my end about the 'Zip Code' and 'Postal Code'. But there does seem to be some inconsistency with the /placetypes returning 'State' and the /place/{woeid}/children returning 'Province' as the placeTypeName. Are 'State' and 'Province' used synonymously in GeoPlanet for placeTypeNames?<!--QuoteEnd--></blockquote></div><!--QuoteEEnd-->]]></description>
		<pubDate>Tue, 05 May 2009 05:17:58 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1378</guid>
	</item>
	<item>
		<title>Locations within the UK</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1258</link>
		<description><![CDATA[Hi all,<br /><br />I am fairly new to Yahoo Geo.<br /><br />I am attempting to build a comprehensive tree of county, region and city locations around the world.<br /><br />My main issue at the moment is how to divide up such a complicated country as the United Kingdom.<br />My tree design only allows for Country-&gt;Region-&gt;City locations.<br /><br />When I am looking at Yahoo Geo I am seeing similar problems to my own.<br /><br />Let's talk about England specifically.<br /><br />Now there are Ceremonial counties in England that from my understanding were broken up in the late 1990s (administratively at least).<br />This break-up mainly divided areas that had grown independent or too large into Unitary Authorities.<br /><br />For an example:<br />- The city of Blackburn<br />Now it is actually part of the Unitary Authority "Blackburn and Darwen" while still being included for ceremonies as part of the Ceremonial County of Lancashire<br /><br />On Yahoo Geo is says simply &lt;admin2 type="County" code="GB-LAN"&gt;Lancashire&lt;/admin2&gt;<br /><br />Now my question is if it is a Unitary Authority it is an administrative region at the same level as the remainder of the Ceremonial County. Shouldn't these unitary authorities be put as the "admin" region above any towns or cities in their jurisdiction, rather than the ceremonial county?<br /><br />Thanks all for any guidance you can provide,<br /><br />Niko Roberts (http://www.travellr.com)]]></description>
		<pubDate>Wed, 22 Apr 2009 21:26:10 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1258</guid>
	</item>
	<item>
		<title>Locations within the UK</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1258</link>
		<description><![CDATA[Niko<br />As you are aware the local goverment hierarchy in the UK is a complex subject.<br />We do support 4 tiers of administrative unit currently. They are...<br /><ul><li>Country = UK</li><li>Admin 1 = England, Scotland, Wales and Northern Ireland</li><li>Admin 2 = Counties </li><li>Admin 3 = Local Government Districts and Boroughs and the London Boroughs.</li></ul><br />I realise that there are a number of Unitary Authorities (such as Blackburn and Darwen) that are effectively 2-tier authorities that span the abstract admin levels 2 and 3. So the inclusion of the former/ceremonial counties in these places is not <b>strictly </b> correct, but they have been retained due to another requirement that wanted the additional 'collateral' that this information provided for the affected places.<br /><br />The fact that you are not retrieving 'Blackburn and Darwen' however is a bug.<br />'Blackburn and Darwen' is the assigned Admin 3 record for the city of Blackburn. It should be returned.<br /><br />Until we fix the bug, there is a 2-step workaround whereby you <br />1. Get the WOEID for the named place you want<br />2. Input that WOEID into the Get Ancestors query - <a href="http://where.yahooapis.com/v1/place/{woeid}/ancestors?appid=" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/{woeid}/ancestors?appid=</a>[yourappidhere]<br /><br />This should provide you with a collection of the full parental hierarchy, and result in you getting 'Blackburn Borough' returned as the Admin 3 resource. <br />The <b>preferred </b>name should be 'Blackburn and Darwen' of course.<br />This is a secondary bug and has already been logged for fix in the next release of the data.<br /><br />-Martin]]></description>
		<pubDate>Wed, 22 Apr 2009 21:26:10 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1258</guid>
	</item>
	<item>
		<title>Continent in place query results</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1216</link>
		<description><![CDATA[It would be usefull that the continent information was also available in the results of this type of queries:<br /><br /><a href="http://where.yahooapis.com/v1/places.q('Lisbon&#39%3b%29;count=1?appid=" rel="nofollow" target="ext">http://where.yahooapis.com/v1/places.q(&#3...;count=1?appid=</a>[AppId]]]></description>
		<pubDate>Mon, 20 Apr 2009 03:57:10 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1216</guid>
	</item>
	<item>
		<title>Continent in place query results</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1216</link>
		<description><![CDATA[We provide only the most basic information in the geographic context -- returning 'continent', 'timezone', etc. in all calls would be unhelpful to the majority of users.  It is however accessible in a second call via the the 'belongtos' resource: <br /><br /><a href="http://where.yahooapis.com/v1/place/742676/belongtos?appid=" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/742676/belongtos?appid=</a>[yourappidhere]<br /><br />- Tyler]]></description>
		<pubDate>Mon, 20 Apr 2009 03:57:10 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1216</guid>
	</item>
	<item>
		<title>Continent in place query results</title>
		<link>http://developer.yahoo.net/forum/index.php?showtopic=1216</link>
		<description><![CDATA[<!--quoteo(post=3646:date=Apr 20 2009, 02&#58;36 PM:name=TyB)--><div class='quote'><div class='quotetop'>QUOTE <cite>(TyB &#064; Apr 20 2009, 02&#58;36 PM) <a href="index.php?act=findpost&pid=3646"><{POST_SNAPBACK}></a></cite></div><blockquote class='quotemain'><!--quotec-->We provide only the most basic information in the geographic context -- returning 'continent', 'timezone', etc. in all calls would be unhelpful to the majority of users.  It is however accessible in a second call via the the 'belongtos' resource: <br /><br /><a href="http://where.yahooapis.com/v1/place/742676/belongtos?appid=" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/742676/belongtos?appid=</a>[yourappidhere]<br /><br />- Tyler<!--QuoteEnd--></blockquote></div><!--QuoteEEnd--><br /><br />But that doesn't always return the continent, see 'San Francisco' <a href="http://where.yahooapis.com/v1/place/2487956/belongtos?appid=" rel="nofollow" target="ext">http://where.yahooapis.com/v1/place/2487956/belongtos?appid=</a>]]></description>
		<pubDate>Mon, 20 Apr 2009 03:57:10 -0700</pubDate>
		<guid>http://developer.yahoo.net/forum/index.php?showtopic=1216</guid>
	</item>
</channel>
</rss><!-- blog1.developer.re2.yahoo.com uncompressed/chunked Tue Feb  9 20:03:45 PST 2010 -->
