Giter Site home page Giter Site logo

maps-examples's Introduction

Maps examples 🌎

Maps examples using folium and prettymaps modules in Python.

Contents


# Folium
import folium
import pandas as pd
from folium import plugins
from folium.features import CustomIcon, FeatureGroup

# Load data
wifi_pilares = pd.read_csv('../data/wifi_gratuito_en_pilares.csv', encoding = 'latin-1')
wifi_sitiospublicos = pd.read_csv('../data/wifi_gratuito_en_sitios_publicos.csv', encoding = 'latin-1')

m = folium.Map(location=[19.43274052957381, -99.133221555212], zoom_start=10, tiles=None)

# Add layer 
folium.TileLayer(tiles="CartoDB Positron", name="Free Wi-Fi Hotspots in Mexico City", attr= '''
            &copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> 
            contributors &copy; <a href="https://carto.com/attributions">CARTO</a>''').add_to(m)

# Add a group
pilares = FeatureGroup(name="Pilares")
pilares.add_to(m)
sitiospublicos = FeatureGroup(name="Sitios Públicos")
sitiospublicos.add_to(m)

# Add the option to switch layers
folium.LayerControl('topright', collapsed= False).add_to(m)

# Add fullscreen option
plugins.Fullscreen(
    position="topright",
    title="Fullscreen",
    title_cancel="Exit fullscreen",
    force_separate_button=True,
).add_to(m)

# Iter a dataframe rows
for i, r in wifi_pilares.iterrows():
    # Custom icon image
    icon = CustomIcon('../assets/icons/wifi-pilares.png', 
    icon_size=(50, 50),
    icon_anchor=(20, 10),
    popup_anchor=(-2, -15))
    # Add markers
    folium.Marker([r['Latitud'], r['Longitud']],
    popup = folium.Popup('''
                        <div class="container">
                            Puntos de acceso: {}
                        </div>
                        
                        <style type='text/css'>
                        .container {{
                            width: 150px;
                            font-family: Verdana, sans-serif;
                            text-align:justify;
                            font-size:12px;
                            font-weight: 600; 
                            border-radius: 5px;
                            padding: 10px;
                        }}
                        '''.format(r["Puntos_de_acceso"])),
    tooltip = r['Colonia'],
    icon = icon
    ).add_to(pilares)

# Iter a dataframe rows
for i, r in wifi_sitiospublicos.iterrows():
    # Custom icon image
    icon = CustomIcon('../assets/icons/wifi-sitiospublicos.png', 
    icon_size=(50, 50),
    icon_anchor=(20, 10),
    popup_anchor=(-2, -15))
    # Add markers
    folium.Marker([r['Latitud'], r['Longitud']],
    popup = folium.Popup('''
                        <div class="container">
                            Puntos de acceso: {}
                        </div>
                        
                        <style type='text/css'>
                        .container {{
                            width: 150px;
                            font-family: Verdana, sans-serif;
                            text-align:justify;
                            font-size:12px;
                            font-weight: 600; 
                            border-radius: 5px;
                            padding: 10px;
                        }}
                        '''.format(r["Puntos_de_acceso"])),
    tooltip = r['Colonia'],
    icon = icon
    ).add_to(sitiospublicos)

# Show map
m

Folium

The data were download from here

from prettymaps import *
import matplotlib.font_manager as fm
import matplotlib.pyplot as plt

# Setup figure
fig, ax = plt.subplots(figsize = (12, 12), constrained_layout = True)

layers = plot(
  'CDMX, México', radius = 1100,

  ax = ax,

  layers = {
          'perimeter': {},
          'streets': {
              'custom_filter': '["highway"~"motorway|trunk|primary|secondary|tertiary|residential|service|unclassified|pedestrian|footway"]',
              'width': {
                  'motorway': 5,
                  'trunk': 5,
                  'primary': 4.5,
                  'secondary': 4,
                  'tertiary': 3.5,
                  'residential': 3,
                  'service': 2,
                  'unclassified': 2,
                  'pedestrian': 2,
                  'footway': 1,
              }
          },
          'building': {'tags': {'building': True, 'landuse': 'construction'}, 'union': False},
          'water': {'tags': {'natural': ['water', 'bay']}},
          'green': {'tags': {'landuse': 'grass', 'natural': ['island', 'wood'], 'leisure': 'park'}},
          'forest': {'tags': {'landuse': 'forest'}},
          'parking': {'tags': {'amenity': 'parking', 'highway': 'pedestrian', 'man_made': 'pier'}}
      },
      drawing_kwargs = {
          'background': {'fc': '#CCD8F6', 'ec': '#dadbc1', 'hatch': 'ooo...', 'zorder': -1},
          'perimeter': {'fc': '#CCD8F6', 'ec': '#dadbc1', 'lw': 0, 'hatch': 'ooo...',  'zorder': 0},
          'green': {'fc': '#D0F1BF', 'ec': '#2F3737', 'lw': 1, 'zorder': 1},
          'forest': {'fc': '#64B96A', 'ec': '#2F3737', 'lw': 1, 'zorder': 1},
          'water': {'fc': '#a1e3ff', 'ec': '#2F3737', 'hatch': 'ooo...', 'hatch_c': '#85c9e6', 'lw': 1, 'zorder': 2},
          'parking': {'fc': '#F1E4FF', 'ec': '#003939', 'lw': 1, 'zorder': 3},
          'streets': {'fc': '#570257', 'ec': '#0F6166', 'alpha': 1, 'lw': 0, 'zorder': 3},
          'building': {'palette': ['#460379', '#FF5E5B', '#FFE290'], 'ec': '#050030', 'lw': .5, 'zorder': 4},
      },

      osm_credit = {'color': '#2F3737'}
)

# Set bounds
xmin, ymin, xmax, ymax = layers['perimeter'].bounds
dx, dy = xmax-xmin, ymax-ymin
ax.set_xlim(xmin-.06*dx, xmax+.06*dx)
ax.set_ylim(ymin-.06*dy, ymax+.06*dy)


# Draw top text
ax.text(
  xmax-.25*dx, ymax-.05*dy,
  'Zócalo,\nCDMX, México',
  color = '#2F3737',
  fontproperties = fm.FontProperties(fname = '../assets/fonts/HashedBrowns-WyJgn.ttf', size = 40)
)

Zocalo

Gallery:

Bosque de Chapultepec Kiosco Morisco

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.