""" | |
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") | |