umbra / main.py
fedric95's picture
Upload 8 files
a37f9bf verified
raw
history blame
273 Bytes
"""
Visualize the location of the acquisition made for the umbra open data collection
"""
import json
import folium
import pandas as pd
with open('data.json') as f:
data = json.load(f)
m = folium.Map(zoom_start=4)
folium.GeoJson(data).add_to(m)
m.save("index.html")