Questions tagged [woe-id]

Spatial entities provided by Yahoo! GeoPlanet are referenced by a 32-bit identifier: the Where On Earth ID (WOEID). WOEIDs are unique and non-repetitive, and are assigned to all entities within the system.

An integral part of GeoPlanet is the WOEID (Where On Earth IDentifier), a unique 32-bit reference identifier, now assigned by Yahoo!, that identifies any feature on Earth. WOEID is used by a number of web applications, such as zWeather.GeoPlanet has a java library that provides access to the GeoPlanet API, including WOEIDs.

Details

Find WOEID from Location.

9 questions
4
votes
0 answers

How can i get WOEID by location?

I want to write a module in php for weather that catches the city name and return weather of today.I have searched about it and i find that yahoo have such service but it worked with WOEID .so now i have this problem:how can i get WOEID by…
amin gholami
  • 453
  • 3
  • 10
2
votes
0 answers

I'm want to get the location by putting a Woeid(Python 3)

I need to get the location by introducing a woeid and i don't know how can i do it something like woeid=23424977 then returns me United States
DigiChino
  • 21
  • 2
1
vote
1 answer

Is that possible to get WOEID by using city name as now yahoo! APIs are down

As now yahoo API is down, I can not get the WOEID for a city or country. Is that possible to get WOEID by using the country/city name?
sumon23
  • 11
  • 3
1
vote
1 answer

Applying WoE for predictions: missing value where TRUE/FALSE needed

I try to make predictions - whether an item from an online retailer will be returned or not - and fail to transform my unknown data set (which I want to predict on) such that it fits to the training data of my model. To be more specific, I calculate…
BanjoB
  • 11
  • 1
1
vote
0 answers

sorry page not found message while using valid WOEID for Twitter API

I am trying to generate the trending topics for WOEID 23424911 (Nepal). It generates the following message TwitterError: [{u'message': u'Sorry, that page does not exist.', u'code': 34}] code used: import…
lpt
  • 931
  • 16
  • 35
1
vote
0 answers

Twitter API not returning GET trends/place based on WOEID

Using Twitter API. Trying to get trending topics based on a WOEID. https://dev.twitter.com/rest/reference/get/trends/place If I do a global search using "1" I get general trending topics on Twitter, as expected. I also get results if I use the WOEID…
Rob E.
  • 11
  • 2
0
votes
1 answer

R Tidymodels/Embed recipe "step_woe" not working

I'm trying to add a "step_woe" step to a recipe, where previously i added a "step_discretize_xgb" but i keep getting an error message because of the variables types i need to transform with the step_woe. Here's a short example of my code, with only…
Filipa
  • 50
  • 6
0
votes
0 answers

urllib.error.HTTPError: HTTP Error 502: Cannot find server

I am tring to fetch woeid through location. Using Python 3.8 but its throw error: raise HTTPError(req.full_url, code, msg, hdrs, fp) urllib.error.HTTPError: HTTP Error 502: Cannot find server. import tweepy import twitter import yweather consumerKey…
Lovelesh
  • 1
  • 1
0
votes
1 answer

Get Twitter trending topics using PHP

I'm trying to get Twitter's trending topics for an area using PHP but I'm a PHP noob. This is the code using $woeid = 2424766; $url= 'https://api.twitter.com/1.1/trends/place.json?id='.$woeid; $trends = $twitter->get($url); foreach…
user144602
  • 11
  • 2