Skip to content

Instantly share code, notes, and snippets.

View rugbyprof's full-sized avatar

Terry Griffin rugbyprof

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rugbyprof
rugbyprof / rtree_query.geojson
Created February 4, 2022 04:47
GeoPandas spatial index (rtree) results
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"city": "Panama City",
"growth": 0.1,
"population": 36877,
"state": "Florida"
@rugbyprof
rugbyprof / one_city_per_state.geojson
Last active January 23, 2022 07:03
One city per state going west to east
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rugbyprof
rugbyprof / featureCollection.geojson
Last active January 16, 2022 20:37
Example feature collection
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rugbyprof
rugbyprof / msu_polygon.geojson
Last active January 13, 2022 10:38
Msu Campus Polygon
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rugbyprof
rugbyprof / IronHorse_to_Msu.geojson
Last active January 13, 2022 10:40
Wf Simple Route
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rugbyprof
rugbyprof / single_inheritance.cpp
Last active October 22, 2021 09:25
Single Inheritance Example
#include <iostream>
using namespace std;
class Character {
protected:
string name; // character name
string weapon; // type of weapon
// plus more
public: