7
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

mohamed mahrous
  • 117
  • 1
  • 2
  • 8
  • 1
    What is the issue exactly? – Bob Haffner Jul 06 '17 at 17:11
  • as u see i tried to put a different colors for populated areas with this code 'folium.GeoJson(open('world_geojson.json'), name='geojson', style_function= lambda x :{'fillcolor':'green' if \ x['properties']['POP2005']<10000000 \ else 'orange' if 10000000 20000000 else 'red'}, ).add_to(map_1)' but still the code genrates only one color the blue – mohamed mahrous Jul 07 '17 at 00:56

1 Answers1

9

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'}

Bob Haffner
  • 8,235
  • 1
  • 36
  • 43