WPIntell

Source evidence

Implementing Radius

WP GeoPosts · support · 2014-12-19T10:44:00+00:00

complaintsentiment
mediumseverity
0.8relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 28 rows with source links

10.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

25 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Sumo1 unresolved
Hi, I can see from your GitHUb posts that you’ve added the radius feature to the plugin. Just wondered if you could give me some guidance on how to implement it and get it working? Thanks https://wordpress.org/plugins/wp-geoposts/ you should use the github, there are a couple small updates and bug fixes there. https://github.com/fyaconiello/wp-geo-posts in the bottom of the readme there is an example w/ a radius. A couple known unsolved issues: If you use shared hosting this probably won’t work well. Geoencoding addresses uses Google’s geoencoding service which limits how many geocodes can be done per day PER IP. So if other people are geoencoding on your shared environment there may not be enough encodes for you. If you have a huge number of geoposts, you will run into another issue. calculating distance on EVERY post before limiting on radius is going to take forever. You can modify my plugin using this: http://www.plumislandmedia.net/mysql/haversine-mysql-nearest-loc/ look at the optimization header to pre-filter before records you are calculating distance on. Seems to work with the new files – Awesome! We’ve been using this plugin for a while with no issues (before we needed the radius feature). What would you call a ‘huge’ number of geoposts? Google recommends Client-Side Geocoding, is this a possibility?

Comments

2 shown
fyaconiello 2014-12-19T14:56:00+00:00

you should use the github, there are a couple small updates and bug fixes there. https://github.com/fyaconiello/wp-geo-posts in the bottom of the readme there is an example w/ a radius. A couple known unsolved issues: If you use shared hosting this probably won’t work well. Geoencoding addresses uses Google’s geoencoding service which limits how many geocodes can be done per day PER IP. So if other people are geoencoding on your shared environment there may not be enough encodes for you. If you have a huge number of geoposts, you will run into another issue. calculating distance on EVERY post before limiting on radius is going to take forever. You can modify my plugin using this: http://www.plumislandmedia.net/mysql/haversine-mysql-nearest-loc/ look at the optimization header to pre-filter before records you are calculating distance on.

Sumo1 2014-12-19T16:53:00+00:00

Seems to work with the new files – Awesome! We’ve been using this plugin for a while with no issues (before we needed the radius feature). What would you call a ‘huge’ number of geoposts? Google recommends Client-Side Geocoding, is this a possibility?