Skip to content

Instantly share code, notes, and snippets.

View thomasforth's full-sized avatar

Thomas Forth thomasforth

View GitHub Profile
@thomasforth
thomasforth / ExcessDeaths.cs
Created March 18, 2021 23:08
Calculating excess death by national origin of name from French open mortality data
using CsvHelper;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
namespace FrenchDeaths
{
class Program
@thomasforth
thomasforth / CoastalIncomeAnalysis.cs
Created August 18, 2020 14:27
Creating small area income and small area coastal income maps for Ireland, Northern Ireland, Scotland, Wales, England, France, and Belgium
using CsvHelper;
using GeoAPI.CoordinateSystems.Transformations;
using NetTopologySuite.Features;
using NetTopologySuite.Geometries;
using NetTopologySuite.Geometries.Prepared;
using NetTopologySuite.IO;
using NetTopologySuite.Operation.Buffer;
using Newtonsoft.Json;
using NUnit.Framework;
using ProjNet.CoordinateSystems;
@thomasforth
thomasforth / BigBellyAnalysis.cs
Created July 11, 2020 12:39
Big Belly Analysis
using CsvHelper;
using CsvHelper.Configuration;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
@thomasforth
thomasforth / Program.cs
Last active June 5, 2020 17:22
Using the Transport for the North disruptions API in .Net 5 with C#
using System;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace SiriTest