Metadata-Version: 2.1
Name: greedy
Version: 0.1.1
Summary: Greedy (topological) coloring for GeoPandas
Home-page: https://github.com/martinfleis/greedy
Author: Martin Fleischmann
Author-email: martin@martinfleischmann.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: geopandas
Requires-Dist: networkx
Requires-Dist: libpysal

# greedy
[![Build Status](https://travis-ci.org/martinfleis/greedy.svg?branch=master)](https://travis-ci.org/martinfleis/greedy) [![codecov](https://codecov.io/gh/martinfleis/greedy/branch/master/graph/badge.svg)](https://codecov.io/gh/martinfleis/greedy)

## Introduction
Greedy (topological) coloring for GeoPandas

`greedy` is a Python package which brings topological (greedy) coloring to [GeoPandas](http://geopandas.org).
It offers several coloring strategies, all accessible using one line of code:

```py
gdf['colors'] = greedy(gdf)
```

![alt text](https://github.com/martinfleis/greedy/blob/master/docs/_images/output_7_02.png?raw=true)

## Documentation
Documentation of `greedy` is available at [martinfleis.github.io/greedy](https://martinfleis.github.io/greedy/).


## Install
You can install `momepy` using Conda from `conda-forge` (recommended):

    conda install -c conda-forge greedy

or from PyPI using `pip`:

    pip install greedy

See the [installation instructions](https://martinfleis.github.io/greedy/install.html) for detailed instructions.

---
Copyright (c) 2017 - 2019 Martin Fleischmann, Nyall Dawson


