Skip to content

Instantly share code, notes, and snippets.

View danvanderboom's full-sized avatar

Dan Vanderboom danvanderboom

View GitHub Profile
@xtrmstep
xtrmstep / cleanup-objbin.ps1
Created March 29, 2016 09:02
PowerShell script to delete all \bin and \obj folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
@kiichi
kiichi / NetTopologySuite_IntersectExample.cs
Last active November 29, 2018 19:16
C# GIS Intersact Example using NetTopologySuite
using System;
using NetTopologySuite.Geometries;
using GeoAPI.Geometries;
// Not sure SRID is respected or not. because their doc says obsolete
namespace NetTopologySuiteTest {
class MainClass {
public static void Main (string[] args) {
// Check Intersection of Brooklyn Street or not