DotNetShoutout - Stories tagged with geocoder
4
Shouts

Using Reverse Geocoding to Find an Address - Gil Fink on .Net

published 695 days, 17 hours, 25 minutes ago posted by gilfgilf 699 days, 7 hours, 25 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Thursday, June 23, 2011 5:44:34 AM GMT
I had a request from a colleague of mine to help him with a geocoding problem. The colleague needed to find an address by a given latitude and longitude which were supplied by a smartphone consumer. The example in this post will show you how you can use Google geocoding API in order to achieve that using C#. (more)
category: How To | clicked: 22 | 1 comment | | source: blogs.microsoft.co.il
tags: Google, Async, C#, geocoder
9
Shouts

IP to Geo Location in Asp.Net MVC « lukencode

published 1097 days, 47 minutes ago posted by lobsterinolobsterino 1098 days, 23 hours, 23 minutes ago
Friday, May 21, 2010 12:22:34 PM GMT Wednesday, May 19, 2010 1:45:59 PM GMT
I have been working on a couple of projects recently (like the new and improved version of Gigpig which is coming soon!) which could really benefit from some automagic geolocation lookups for visitors. In the case of Gigpig I wanted to filter what gigs users could see based on where they were in the world. The database I am using is the binary version of the Max Mind GeoLite City free location database. The database essentially maps IP address ranges to cities and countries.  The binary format, I am inf... (more)
category: Web Dev | clicked: 3 | comment | | source: lukencode.com
tags: MVC, geocoder
13
Shouts

A* pathfinding search in C# - Part 3

published 1266 days, 4 hours, 3 minutes ago posted by lenielleniel 1267 days, 9 hours, 4 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 4:05:17 AM GMT
This is the last installment in the series about A* search. The C# source code implemented is available in the final part of this post. As promised in the last words of A* pathfinding search in C# - Part 2 today we’re gonna run a test case using the Romania map. This post shows a test case in which the application outputs the shortest path from Arad to Bucharest. I used the ViewOtherPaths method to show the different possible routes. This way we can have a look at why the A* algorithm has chosen such sho... (more)
category: How To | clicked: 0 | comment | | source: www.leniel.net
tags: data structures, priority queue, algorithms, Programming, C#, A*, immutable data structures, Haversine, geocoder
10
Shouts

A* pathfinding search in C# - Part 2

posted by lenielleniel 1267 days, 9 hours, 5 minutes ago
Wednesday, December 02, 2009 4:03:48 AM GMT
This post describes step by step the methods used to implement the A* search algorithm. To illustrate the path finding problem and how it can be solved using A* I decided to use the Romania map (with the same Cities I used in Breadth and depth first search series of posts). Now I modified it adding more connections between the cities so that we have more fun while debugging the code. This time I decided to get the real values of latitude and longitude for the cities shown in the Romania map. See how a gr... (more)
category: How To | clicked: 0 | comment | | source: www.leniel.net
tags: data structures, priority queue, algorithms, Programming, C#, A*, immutable data structures, Haversine, geocoder