Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

folium.GeoJson (style function) not working as i want

import folium ,pandas ,json

df=pandas.read_csv('Volcanoes_2.txt')

def colors(elev):
    minimum=int(min(df['ELEV']))
    step=int(max((df['ELEV'])-min(df['ELEV']))/3)
    if elev in range (minimum,minimum+step):
        col= "green"
    elif elev in range(minimum+step,minimum+step*2):
        col= "orange"
    else:
        col= "red"
    return col


map_1=folium.Map(location=[df['LAT'].mean(), df['LON'].mean()] ,
zoom_start=6,tiles='mapbox bright')

for name, lon, lat, elev in zip(df['NAME'], df['LON'], df['LAT'],
df['ELEV'] ):
    folium.Marker([lat, lon], popup= name,
     icon = folium.Icon(color =colors(elev))).add_to(map_1)

folium.GeoJson(open('world_geojson.json'),
           name='geojson',
           style_function= lambda x :{'fillcolor':'green' if \
  x['properties']['POP2005']<10000000 \
       else 'orange' if 10000000 <x['properties']['POP2005']>20000000 else 'red'},
       ).add_to(map_1)

folium.LayerControl().add_to(map_1)

map_1.save("map.html")

this is the map file https://github.com/xxspider4/new_repo/blob/master/map.html

this is the json file https://github.com/xxspider4/new_repo/blob/master/world_geojson.json

like image 907
mohamed mahrous Avatar asked Jul 05 '17 07:07

mohamed mahrous


1 Answers

You were very close. I was able to get it to work by changing fillcolor to fillColor in your style function

lambda x :{'fillColor':'green' if \ x['properties']['POP2005']<10000000 \ else 'orange' if 10000000 <x['properties']['POP2005']>20000000 else 'red'}

like image 116
Bob Haffner Avatar answered Nov 11 '22 14:11

Bob Haffner