Skip to content

Instantly share code, notes, and snippets.

View rowanwins's full-sized avatar
🌐
Making maps

Rowan Winsemius rowanwins

🌐
Making maps
  • Canberra, Australia
View GitHub Profile
function crossProduct (a, b) {
return (a.x * b.y) - (a.y * b.x)
}
const ab = crossProduct(A, B)
const ac = crossProduct(A, C)
const bd = crossProduct(B, D)
const cd = crossProduct(C, D)
import React, {createRef, Component} from 'react';
import {render} from 'react-dom';
import {StaticMap} from 'react-map-gl';
import DeckGL, {TileLayer, BitmapLayer} from 'deck.gl';
import {interpolateViridis, interpolateInferno} from 'd3-scale-chromatic'
import Pbf from 'pbf'
const MAPBOX_TOKEN = '...'
let INITIAL_VIEW_STATE = {
latitude: -25.734968,
@rowanwins
rowanwins / data.geojson
Created August 12, 2020 12:07
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created August 25, 2020 23:57
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created September 17, 2020 04:25
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created July 20, 2021 05:44
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created July 20, 2021 05:45
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created July 30, 2021 12:19
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created March 21, 2023 00:20
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rowanwins
rowanwins / data.geojson
Created March 21, 2023 00:20
GeoJson saved from geojson-editor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.