Skip to content

Instantly share code, notes, and snippets.

View DenisCarriere's full-sized avatar
🎯
Focusing

Denis DenisCarriere

🎯
Focusing
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / README.md
Last active January 4, 2022 03:05
Python Geocoder reverse geocoding with OpenStreetMap

You can conduct reverse geocoding using the Python Geocoder library.

Notes: Input for coordinate is using [lat, lng] order.

Python

import geocoder
g = geocoder.osm([45,-75], method='reverse')
{...}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / us-states.geojson
Last active November 8, 2016 20:58
United States Boundaries
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / TypeScript type definitions.md
Last active September 28, 2016 15:39
TypeScript type definitions
@DenisCarriere
DenisCarriere / sumter-roads.geojson
Created September 14, 2016 03:03
Sumter Roads
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / building.js
Created September 13, 2016 01:14
Using tile-reduce
module.exports = function(data, tile, writeData, done) {
let count = 0
for (const feature of data.osmdata.osm.features) {
if (feature.properties['@user'] === 'DenisCarriere') {
if (feature.properties.building) count += 1
}
}
done(null, count)
}
@DenisCarriere
DenisCarriere / schools.geojson
Created September 12, 2016 23:48
CECCE Schools
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / concave-points.geojson
Created September 11, 2016 07:00
Concave points for TurfJS tests
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DenisCarriere
DenisCarriere / caledon-address.geojson
Last active September 10, 2016 05:19
Caledon Address Points
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.