Metadata-Version: 1.0
Name: simplemapplot
Version: 1.0.1
Summary: Simple functions for coloring maps
Home-page: http://pypi.python.org/pypi/simplemapplot/
Author: Michael Anderson
Author-email: mbanderson@uwalumni.com
License: UNKNOWN
Description: ===========
        SimpleMapPlot
        ===========
        
        This package allows you to easily create a colored map of US States or counties.  For example::
        
            #!/usr/bin/env python
        
            import simplemapplot
        
            dict_stateabbrev_value = {"TX":99, "WI":45, "IL":40, "AK":5}
            simplemapplot.make_us_state_map(data=dict_stateabbrev_value)
        
        This results in a colored US state map.
        
        Installing
        =========
        
        Simply use pip::
        
            pip install SimpleMapPlot
        
        Other Examples
        =========
        
        Coloring US counties::
        
            #!/usr/bin/env python
            import simplemapplot
        
            dict_fips_value = {"48453":90,"15009":45}
            simplemapplot.make_us_county_map(data=dict_fips_value)
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Utilities
