Meta Mobile Network Connectivity

Meta Mobile Network Connectivity#

The Network coverage maps, as described in the previous page, show the number of points (~600m) that are likely to not have mobile network coverage compared to a 30 day prior baseline.

The first step here is to download the data from the Facebook Data For Good Portal. One member in your team/members of the Data Lab team will be able to pass those files to you.

Following this, the latitude and logintude points are used to categorize the data at different admin levels

Hide code cell source
output_notebook()

tabs = []

for adm in aoi_adm1:
    df = networkCoverage[networkCoverage['adm1_en']==adm] 

    tabs.append(
        TabPanel(
        child=get_line_plot(df, f"Areas with Undetected Network post earthquake", "Source: Data for Good Meta", earthquakes=True, subtitle = '~600m areas without network post earthquake compared to 30 day prior baseline'),
                    title=adm.capitalize(),
                )
                )

tabs = Tabs(tabs=tabs, sizing_mode="scale_both")
show(tabs, warn_on_missing_glyphs=False)
Loading BokehJS ...
Hide code cell source
output_notebook()


tabs = []

for adm in aoi_adm1:
    df = week[week['adm1_en']==adm] 

    tabs.append(
        TabPanel(
        child=get_line_plot(df, f"Weekly trends for Areas with Undetected Network post earthquake", "Source: Data for Good Meta", earthquakes=True, subtitle = '~600m areas without network post earthquake compared to 30 day prior baseline'),
                    title=adm.capitalize(),
                )
                )

tabs = Tabs(tabs=tabs, sizing_mode="scale_both")
show(tabs, warn_on_missing_glyphs=False)
Loading BokehJS ...