bradcosine / dstk-net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dstk-net

A c# wrapper for the Data Science Toolkit APIs. Only street2coordinates has been implemented thus far so there is much more work to do.

Uses the fastest JSON serializer for .NET which is the ServiceStack JsonSerializer in the ServiceStack.Text project.

Example usage:

DSTK dstk = new DSTK();
dstk.DSTK_API_BASE = @"http://your.dstk.instance/";
var results = dstk.street2coordinates("8852 W. Sunset Blvd, Los Angeles, CA 90069");
Console.WriteLine("latitude: " +results.location.First().latitude);
Console.WriteLine("longitude: " +results.location.First().longitude);

About


Languages

Language:C# 100.0%