The user logins in and goes to a discover page. They enter a distance from their location as the requested results scope. Lets say 25 miles from where I live for example. Additionally they could pick like a genre or music but not as important.
So they hit seach and see in a 25 mile spanse in all directions in a circle form the closest artists to their location. From there they can see the top result and click that and step through the top results from 1 to 2 to 3.... To top 10 and so on as much as their heart desires.
So i was thinking maybe GeoIP might be good because it will use the users location and last known GeoIP of the artist for example.
I was curious if anyone had any ideas or better ideas then I had.
Thanks so much,
JJ Zolper
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/_ERIIZrolmUJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
So heres my goal:The user logins in and goes to a discover page. They enter a distance from their location as the requested results scope. Lets say 25 miles from where I live for example. Additionally they could pick like a genre or music but not as important.
So they hit seach and see in a 25 mile spanse in all directions in a circle form the closest artists to their location. From there they can see the top result and click that and step through the top results from 1 to 2 to 3.... To top 10 and so on as much as their heart desires.
So i was thinking maybe GeoIP might be good because it will use the users location and last known GeoIP of the artist for example.
I was curious if anyone had any ideas or better ideas then I had.
Thanks so much,
JJ Zolper
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/_ERIIZrolmUJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
On Sun, Jul 15, 2012 at 1:58 AM, JJ Zolper <codin...@gmail.com> wrote:So heres my goal:The user logins in and goes to a discover page. They enter a distance from their location as the requested results scope. Lets say 25 miles from where I live for example. Additionally they could pick like a genre or music but not as important.
So they hit seach and see in a 25 mile spanse in all directions in a circle form the closest artists to their location. From there they can see the top result and click that and step through the top results from 1 to 2 to 3.... To top 10 and so on as much as their heart desires.
So i was thinking maybe GeoIP might be good because it will use the users location and last known GeoIP of the artist for example.
I'm currently developing a project based on google maps, and it sounds that you might want to take a look at their API,You could use markers (latitude and longitude) for your artists, ask the user to place themselves on the map and thencalculate if they are on the wanted area or not.
I was curious if anyone had any ideas or better ideas then I had.
Thanks so much,
JJ Zolper
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/_ERIIZrolmUJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
What you have just explained seems to be a good option! Is the option to use latitude and longitude a very common one? I'm notas familiar as to which options of calculation have known to be the most stable, usable, fast, or efficient. Or there is any commonknowledge about the such thing.
Here's what I'm thinking. First the user enters their town for example so Vienna, VA. Then they choose how far from their location so 25 miles. But then they also have an advanced search option where they can refine their request even more. They are able to play around with a Google Map on the side and zoom into their physical house location on the map and put a marker/point there of some sort. This could be lat/long I don't know yet. This way if that data checks out they get and even more accurate representation of the artists in their area. Any thoughts or opinions on how you think Ishould go about this?
User requests in all directions a circle spanse of 25 miles i.e. and theres a return of artists in that area.
As far as the area I want to cover I would like to start with the northern virginia area and expand from there. A goal set for the entire United States if that gives you an idea.
Well if possible I would like 1 system to cover the entire United States I dont want to have to handle like okay so in minnesota what system am i going to make for them or in los angeles what system for them. Im going to a massive spanse of land here i want flexibility so the user can be like im in VA but traveling to FL for the weekend I want to see some bands playing there and see if they have shows etc etc etc.
Thanks,
JJ
And yeah im pretty good at math thanks for the tip Ill work on that soon!
On Sun, 15 Jul 2012 09:47:12 -0700 (PDT), JJ Zolper
<codin...@gmail.com> declaimed the following in
gmane.comp.python.django.user:
> First the user enters their town for example so Vienna, VA. Then they
> choose how far from their location so 25 miles. But then they also have an
> advanced search option where they can refine their request even more. They
> are able to play around with a Google Map on the side and zoom into their
> physical house location on the map and put a marker/point there of some
> sort. This could be lat/long I don't know yet. This way if that data checks
> out they get an even more accurate representation of the artists in their
> area. Any thoughts or opinions on how you think I should go about this?
>
I'm tempted to suggest using UTM internally, but you'd probably end
up with somebody living on the edge of a zone, and having to special
case the search radius as it crosses the zone boundary.
Reason to consider UTM? Coordinates are in meters, and computing if
a point is within a 40000m (40km => ~25 miles) just becomes a case of
applying Pythagoras [sqrt((x1-x2)^2 + (y1-y2)^2) <= radius].
http://www.uwgb.edu/dutchs/usefuldata/utmformulas.htm
--
Wulfraed Dennis Lee Bieber AF6VN
wlf...@ix.netcom.com HTTP://wlfraed.home.netcom.com/
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/xqKHuCVictIJ.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
Yeah I'm trying to get GeoDjango set up as we speak. GeoDjango sounds awesome.I have postgresql and Im trying to install postgis but im getting this:
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/W-SrqDO5vxMJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/bl41pHlwmdEJ.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
Does UTM have to do with the timezones in the USA? Do some of the lines match to tomezone lines? You also never really answered my question before. Sure it sounds like you know what UTM is but I sure dont and thats all youre talking about.
If this is about the timezones or whatever then yes I can sort of imagine the issue youre talking about. I know what pythagoreans theorem is im a math guy but i cant quite pick how it applies to any of what we are talking about. Are you saying i need it to be able to calculate the circle and distances from a point in a 25 mile radius so x^2 +y^2 = 25 mi ^2?
Sorry if i seem slow. Still new to this.
JJ
No more fiddling with my configure issues. I will try installing all of it tomorrow.