We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1673820 commit ee6b1e5Copy full SHA for ee6b1e5
braininventory/get.py
@@ -154,14 +154,21 @@ def report():
154
155
import pandas as pd
156
import urllib.request
157
+import geoip2.database
158
+from geopy.geocoders import Nominatim
159
+import folium
160
+'''
161
+Import modules that will be used to create the world map, find coordinates of affiliations, and
162
163
164
url = 'https://download.brainimagelibrary.org/inventory/daily/reports/today.json'
165
file_path, _ = urllib.request.urlretrieve(url)
-
166
df = pd.read_json(file_path)
167
df
-import folium
168
+"""
169
+Geopy - Input: University Output: Address, lat, lon
170
+Folium - visual map creator
171
172
173
map = folium.Map()
174
0 commit comments