├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── doc └── fill.png ├── go.mod ├── go.sum ├── hashfill.go ├── hashfill_test.go ├── predicates.go ├── predicates_test.go └── testdata ├── london.geojson ├── regents.geojson └── regents_hole.geojson /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/README.md -------------------------------------------------------------------------------- /doc/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/doc/fill.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/go.sum -------------------------------------------------------------------------------- /hashfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/hashfill.go -------------------------------------------------------------------------------- /hashfill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/hashfill_test.go -------------------------------------------------------------------------------- /predicates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/predicates.go -------------------------------------------------------------------------------- /predicates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/predicates_test.go -------------------------------------------------------------------------------- /testdata/london.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/testdata/london.geojson -------------------------------------------------------------------------------- /testdata/regents.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/testdata/regents.geojson -------------------------------------------------------------------------------- /testdata/regents_hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/hashfill/HEAD/testdata/regents_hole.geojson --------------------------------------------------------------------------------