File size: 273 Bytes
a37f9bf
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
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")