Point Radius search verification
See original GitHub issueHello all, I am trying to scrape tweets from London.
I make the following query:
twarc2 search --archive --limit 100 --start-time "2019-01-04" --end-time "2019-01-06" "(vegan OR vegetarian OR plant-based) point_radius:[-0.127758 51.507351 5mi]" 100VeganLondonJan2019.jsonl
Is there a way I can verify these results? When I look at the users author.location I would say about 20% seem to at least be self-defined as London or at least the UK.
The few with geolocation vary across the UK and US.
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Circle Search for Cases
Search cases around a center point with a specified radius. ... If you are unsure of the structure's location, you can verify the...
Read more >python - How to check that a point is inside the given radius?
The function is_inside_radius verifies if row[latitude] and row[longitude] are inside the radius of 10 km from any of the points in df_plants ....
Read more >Geo-distance query | Elasticsearch Guide [8.5] | Elastic
The radius of the circle centred on the specified location. Points which fall into this circle are considered to be matches. The distance...
Read more >How Do I Search Within X Radius Miles of a Central Point?
Key in an address into the address bar located in the top upper left corner of the application and click the Binocular icon...
Read more >Check if point is within radius of another point with Shapely
I'd imagine I have to create a circle with radius x miles from my reference point and then check if each of my...
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
What Igor said - I just ran your original query and got the results I think you were expecting in your question, so I’m going to close this ticket here.
If you’re using twarc-csv, note you will probably also want the
--no-inline-referenced-tweets
option set, otherwise you’ll get quoted/referenced tweets in the CSV that don’t match your search criteria.Can you try again with the query in your original question with the brackets?
The data you shared was collected with a different query - the brackets are critical as without them you end up with a query that implicitly is like “a OR b OR (c and d)”. The Twitter API applies the implicit AND first.
On Tue, 19 Oct 2021, 22:43 Joseph Allen, @.***> wrote: