├── GeoSharp.sln ├── GeoSharp ├── GeoCode.cs ├── GeoDBOptimize.cs ├── GeoName.cs ├── GeoSharp.csproj ├── GeoSharpVS2010.csproj ├── IPReverseGeoCode.cs ├── KDTree │ ├── IKDComparator.cs │ ├── KDNode.cs │ └── KDTree.cs ├── Properties │ └── AssemblyInfo.cs ├── ReverseGeoCode.cs └── bin │ ├── Debug │ ├── GeoSharp.dll │ └── GeoSharp.pdb │ └── Release │ ├── GeoSharp.dll │ └── GeoSharp.pdb ├── GeoSharpVS2010.sln ├── LICENSE └── README.md /GeoSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp.sln -------------------------------------------------------------------------------- /GeoSharp/GeoCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/GeoCode.cs -------------------------------------------------------------------------------- /GeoSharp/GeoDBOptimize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/GeoDBOptimize.cs -------------------------------------------------------------------------------- /GeoSharp/GeoName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/GeoName.cs -------------------------------------------------------------------------------- /GeoSharp/GeoSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/GeoSharp.csproj -------------------------------------------------------------------------------- /GeoSharp/GeoSharpVS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/GeoSharpVS2010.csproj -------------------------------------------------------------------------------- /GeoSharp/IPReverseGeoCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/IPReverseGeoCode.cs -------------------------------------------------------------------------------- /GeoSharp/KDTree/IKDComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/KDTree/IKDComparator.cs -------------------------------------------------------------------------------- /GeoSharp/KDTree/KDNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/KDTree/KDNode.cs -------------------------------------------------------------------------------- /GeoSharp/KDTree/KDTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/KDTree/KDTree.cs -------------------------------------------------------------------------------- /GeoSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GeoSharp/ReverseGeoCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/ReverseGeoCode.cs -------------------------------------------------------------------------------- /GeoSharp/bin/Debug/GeoSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/bin/Debug/GeoSharp.dll -------------------------------------------------------------------------------- /GeoSharp/bin/Debug/GeoSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/bin/Debug/GeoSharp.pdb -------------------------------------------------------------------------------- /GeoSharp/bin/Release/GeoSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/bin/Release/GeoSharp.dll -------------------------------------------------------------------------------- /GeoSharp/bin/Release/GeoSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharp/bin/Release/GeoSharp.pdb -------------------------------------------------------------------------------- /GeoSharpVS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/GeoSharpVS2010.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrolis/GeoSharp/HEAD/README.md --------------------------------------------------------------------------------