Metadata-Version: 2.1
Name: crosscompute-views-map
Version: 0.0.2
Summary: Render maps in your automations.
Home-page: https://crosscompute.com
Author: CrossCompute Inc.
Author-email: support@crosscompute.com
License: MIT
Project-URL: Bug Tracker, https://github.com/crosscompute/crosscompute-views-map/issues
Project-URL: Documentation, https://github.com/crosscompute/crosscompute-views-map
Project-URL: Source Code, https://github.com/crosscompute/crosscompute-views-map
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Map Views for CrossCompute

Render maps in your CrossCompute automations. Here are the views included in this package:

- map-mapbox
- map-deck-screengrid

Please see https://github.com/crosscompute/crosscompute for more information about the CrossCompute Analytics Automation Framework.

## Usage

```bash
# Upgrade package
pip install crosscompute-views-map

# Update configuration
vim automate.yml
  variables:
    - id: buildings
      view: map-mapbox
    - id: incidents
      view: map-deck-screengrid
```

## Troubleshooting

### No Matching Distribution Found

```
$ pip install crosscompute-views-map
ERROR: Could not find a version that satisfies the requirement crosscompute-views-map (from versions: none)
ERROR: No matching distribution found for crosscompute-views-map
```

To solve this issue, create a virtual environment using python >= 3.9.

```
sudo dnf -y install python3.9
# sudo apt -y install python3.9
python3.9 -m venv ~/.virtualenvs/crosscompute
source ~/.virtualenvs/crosscompute/bin/activate
pip install crosscompute-views-map
```


