Geolocation queries support
See original GitHub issueAdd support for geolocation queries:
$ curl -s wttr.in/?format=location | jq .
{
"latitude": 48.1371079,
"timezone": "Europe/Berlin",
"longitude": 11.5753822,
"address": "München, OB, Bayern, Deutschland"
}
Original message
The weather (in San Francisco) is currently incorrect curl wttr.in is reporting 42F (6C) while other sources (weather.gov, DarkSky, my iPhone etc) are reporting 49F (9-10C) I can confirm it is in fact 49F (9-10C) not 42F (6C) outside at the moment. I’ve confirmed the error persists on the website as well as the terminal report Any ideas on how to fix this or what’s causing the problem?
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
Geospatial Queries — MongoDB Manual
MongoDB geospatial queries can interpret geometry on a flat surface or a sphere. 2dsphere indexes support only spherical queries (i.e. queries that interpret ......
Read more >What is a geospatial query? - Amazon Athena
Geospatial queries are specialized types of SQL queries supported in Athena. They differ from non-spatial SQL queries in the following ways:
Read more >Geospatial Geopoint Queries | Couchbase Docs
A geospatial geopoint query specifies an area and returns each document that contains a reference to a location within the area. Areas and...
Read more >Geospatial queries - RethinkDB
RethinkDB supports spatial and geographic queries through geometry object support. In this article. Getting started; Coordinate system; Lines and distances ...
Read more >Geo queries | Firestore - Firebase
Many apps have documents that are indexed by physical locations. For example, your app might allow users to browse stores near their current...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Something like this would work for you?
(CAUTION: It is not yet implemented! It is just an example)
Accepted 👍