-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
Please add a code sample or a nbviewer link, copy-pastable if possible
# Rendering map
def infection_heatmap(dic, regions_trans, map_name):
'''Init Visuals'''
[...]
regions, fol_map = init_render(dic, regions_trans)
#render regions
for k in regions:
location = regions[k]["localisation"]
circle_size += [...] #float
prc_infected = [...] #float [0,1]
point = [ [location[0], location[1], prc_infected * 5000] ]
HeatMap( data= point,
radius= circle_size
).add_to(fol_map)
fol_map.save(map_name)
print("Infection map generated")Problem description
When i open the map to take a screenshot. For some points It add a 'semi-dot' that looks to start from the upper left corner of the tile.
How can i delete the 'semi-dot'
Output with heatmap
Metadata
Metadata
Assignees
Labels
No labels

