Loading...
Loading...
Use when asked to visualize sales territories, coverage areas, service regions, or geographic boundaries on interactive maps.
npx skill4agent add dkyazzentwatwa/chatgpt-skills territory-mapperfrom territory_mapper import TerritoryMapper
# Create territory map
mapper = TerritoryMapper()
mapper.add_territory(
name='West Coast',
coordinates=[(37.7, -122.4), (34.0, -118.2), ...],
color='blue',
data={'sales': 1000000, 'rep': 'Alice'}
)
mapper.save_html('territories.html')# Create map from GeoJSON
python territory_mapper.py --geojson territories.geojson --output map.html
# Color by column
python territory_mapper.py --geojson territories.geojson --color-by sales --output map.html