Geocoder
C# wrapper for geocoding services (currently supports only Google Maps API with plans for Bing support soon). Includes geocoding, reverse geocoding and driving directions.
Install / Use
/learn @scottschluer/GeocoderREADME
USAGE:
-
Find lat/long from address: string address = "1600 Amphitheatre Parkway, Mountain View, CA 94043"; Coordinate coordinate = new GoogleGeocoder().GetLatLongFromAddress(address);
-
Find address from lat/long: Coordinate origin = new Coordinate { Latitude = 37.4217429, Longitude = -122.0844308 }; string address = new GoogleGeocoder().GetAddressFromLatLong(origin.Latitude, origin.Longitude)
-
Get directions between two addresses string origin = "1600 Amphitheatre Parkway, Mountain View, CA 94043"; string destination = "1701 Airport Blvd San Jose, CA 95110"; Directions directions = new GoogleGeocoder().GetDirections(origin, destination, TravelMode.Walking);
string totalDistance = directions.Distance; string totalDuration = directions.Duration;
foreach (DirectionStep step in directions.Steps) { // step.Instruction // step.Duration }
Related Skills
openhue
341.0kControl Philips Hue lights and scenes via the OpenHue CLI.
sag
341.0kElevenLabs text-to-speech with mac-style say UX.
weather
341.0kGet current weather and forecasts via wttr.in or Open-Meteo
tweakcc
1.5kCustomize Claude Code's system prompts, create custom toolsets, input pattern highlighters, themes/thinking verbs/spinners, customize input box & user message styling, support AGENTS.md, unlock private/unreleased features, and much more. Supports both native/npm installs on all platforms.
