foliumap module¶
CustomControl (MacroElement)
¶
Put any HTML on the map as a Leaflet Control. Adopted from https://github.com/python-visualization/folium/pull/1662
Source code in leafmap/foliumap.py
class CustomControl(MacroElement):
"""Put any HTML on the map as a Leaflet Control.
Adopted from https://github.com/python-visualization/folium/pull/1662
"""
_template = Template(
"""
{% macro script(this, kwargs) %}
L.Control.CustomControl = L.Control.extend({
onAdd: function(map) {
let div = L.DomUtil.create('div');
div.innerHTML = `{{ this.html }}`;
return div;
},
onRemove: function(map) {
// Nothing to do here
}
});
L.control.customControl = function(opts) {
return new L.Control.CustomControl(opts);
}
L.control.customControl(
{ position: "{{ this.position }}" }
).addTo({{ this._parent.get_name() }});
{% endmacro %}
"""
)
def __init__(self, html, position="bottomleft"):
def escape_backticks(text):
"""Escape backticks so text can be used in a JS template."""
import re
return re.sub(r"(?<!\\)`", r"\`", text)
super().__init__()
self.html = escape_backticks(html)
self.position = position
FloatText (MacroElement)
¶
Adds a floating image in HTML canvas on top of the map.
Source code in leafmap/foliumap.py
class FloatText(MacroElement):
"""Adds a floating image in HTML canvas on top of the map."""
_template = Template(
"""
{% macro header(this,kwargs) %}
<style>
#{{this.get_name()}} {
position:absolute;
bottom:{{this.bottom}}%;
left:{{this.left}}%;
}
</style>
{% endmacro %}
{% macro html(this, kwargs) %}
<!doctype html>
<html lang="en">
<head>
</head>
<body>
<div id='{{this.get_name()}}' class='{{this.get_name()}}'
style='position: absolute; z-index:9999; border:2px solid grey; background-color:rgba(255, 255, 255, 0.8);
border-radius:5px; padding: 5px; font-size:14px; '>
<div class='text'>{{this.text}}</div>
</div>
</body>
</html>
<style type='text/css'>
.{{this.get_name()}} .text {
text-align: left;
margin-bottom: 0px;
font-size: 90%;
float: left;
}
</style>
{% endmacro %}
"""
)
def __init__(self, text, bottom=75, left=75):
super(FloatText, self).__init__()
self._name = "FloatText"
self.text = text
self.bottom = bottom
self.left = left
Map (Map)
¶
The Map class inherits folium.Map. By default, the Map will add OpenStreetMap as the basemap.
Returns:
Type | Description |
---|---|
object |
folium map object. |
Source code in leafmap/foliumap.py
class Map(folium.Map):
"""The Map class inherits folium.Map. By default, the Map will add OpenStreetMap as the basemap.
Returns:
object: folium map object.
"""
def __init__(self, **kwargs):
# Default map center location and zoom level
latlon = [20, 0]
zoom = 2
# Interchangeable parameters between ipyleaflet and folium
if "center" in kwargs:
kwargs["location"] = kwargs["center"]
kwargs.pop("center")
if "location" in kwargs:
latlon = kwargs["location"]
else:
kwargs["location"] = latlon
if "zoom" in kwargs:
kwargs["zoom_start"] = kwargs["zoom"]
kwargs.pop("zoom")
if "zoom_start" in kwargs:
zoom = kwargs["zoom_start"]
else:
kwargs["zoom_start"] = zoom
if "max_zoom" not in kwargs:
kwargs["max_zoom"] = 24
if "scale_control" not in kwargs:
kwargs["scale_control"] = True
if kwargs["scale_control"]:
kwargs["control_scale"] = True
kwargs.pop("scale_control")
# if "control_scale" not in kwargs:
# kwargs["control_scale"] = True
if "draw_export" not in kwargs:
kwargs["draw_export"] = False
if "height" in kwargs and isinstance(kwargs["height"], str):
kwargs["height"] = float(kwargs["height"].replace("px", ""))
if (
"width" in kwargs
and isinstance(kwargs["width"], str)
and ("%" not in kwargs["width"])
):
kwargs["width"] = float(kwargs["width"].replace("px", ""))
height = None
width = None
if "height" in kwargs:
height = kwargs.pop("height")
else:
height = 600
if "width" in kwargs:
width = kwargs.pop("width")
else:
width = "100%"
super().__init__(**kwargs)
self.baseclass = "folium"
self.user_roi = None
if (height is not None) or (width is not None):
f = folium.Figure(width=width, height=height)
self.add_to(f)
if "fullscreen_control" not in kwargs:
kwargs["fullscreen_control"] = True
if kwargs["fullscreen_control"]:
plugins.Fullscreen().add_to(self)
if "draw_control" not in kwargs:
kwargs["draw_control"] = True
if kwargs["draw_control"]:
plugins.Draw(export=kwargs.get("draw_export")).add_to(self)
if "measure_control" not in kwargs:
kwargs["measure_control"] = True
if kwargs["measure_control"]:
plugins.MeasureControl(position="bottomleft").add_to(self)
if "latlon_control" not in kwargs:
kwargs["latlon_control"] = False
if kwargs["latlon_control"]:
folium.LatLngPopup().add_to(self)
if "locate_control" not in kwargs:
kwargs["locate_control"] = False
if kwargs["locate_control"]:
plugins.LocateControl().add_to(self)
if "minimap_control" not in kwargs:
kwargs["minimap_control"] = False
if kwargs["minimap_control"]:
plugins.MiniMap().add_to(self)
if "search_control" not in kwargs:
kwargs["search_control"] = True
if kwargs["search_control"]:
plugins.Geocoder(collapsed=True, position="topleft").add_to(self)
if "google_map" not in kwargs:
pass
elif kwargs["google_map"] is not None:
if kwargs["google_map"].upper() == "ROADMAP":
layer = basemaps["ROADMAP"]
elif kwargs["google_map"].upper() == "HYBRID":
layer = basemaps["HYBRID"]
elif kwargs["google_map"].upper() == "TERRAIN":
layer = basemaps["TERRAIN"]
elif kwargs["google_map"].upper() == "SATELLITE":
layer = basemaps["SATELLITE"]
else:
print(
f'{kwargs["google_map"]} is invalid. google_map must be one of: ["ROADMAP", "HYBRID", "TERRAIN", "SATELLITE"]. Adding the default ROADMAP.'
)
layer = basemaps["ROADMAP"]
layer.add_to(self)
if "layers_control" not in kwargs:
self.options["layersControl"] = True
else:
self.options["layersControl"] = kwargs["layers_control"]
self.fit_bounds([latlon, latlon], max_zoom=zoom)
def add(self, object, **kwargs):
"""Adds something to the map. This method is not implemented in folium."""
pass
def add_layer(self, layer):
"""Adds a layer to the map.
Args:
layer (TileLayer): A TileLayer instance.
"""
layer.add_to(self)
def add_ee_layer(
self,
asset_id: str,
name: str = None,
attribution: str = "Google Earth Engine",
shown: bool = True,
opacity: float = 1.0,
**kwargs,
) -> None:
"""
Adds a Google Earth Engine tile layer to the map based on the tile layer URL from
https://github.com/opengeos/ee-tile-layers/blob/main/datasets.tsv.
Args:
asset_id (str): The ID of the Earth Engine asset.
name (str, optional): The name of the tile layer. If not provided, the asset ID will be used. Default is None.
attribution (str, optional): The attribution text to be displayed. Default is "Google Earth Engine".
shown (bool, optional): Whether the tile layer should be shown on the map. Default is True.
opacity (float, optional): The opacity of the tile layer. Default is 1.0.
**kwargs: Additional keyword arguments to be passed to the underlying `add_tile_layer` method.
Returns:
None
"""
import pandas as pd
df = pd.read_csv(
"https://raw.githubusercontent.com/opengeos/ee-tile-layers/main/datasets.tsv",
sep="\t",
)
asset_id = asset_id.strip()
if name is None:
name = asset_id
if asset_id in df["id"].values:
url = df.loc[df["id"] == asset_id, "url"].values[0]
self.add_tile_layer(
url,
name,
attribution=attribution,
shown=shown,
opacity=opacity,
**kwargs,
)
else:
print(f"The provided EE tile layer {asset_id} does not exist.")
def add_pmtiles(
self,
url,
style=None,
name=None,
tooltip=True,
overlay=True,
control=True,
show=True,
zoom_to_layer=True,
**kwargs,
) -> None:
"""
Adds a PMTiles layer to the map.
Args:
url (str): The URL of the PMTiles file.
style (str, optional): The CSS style to apply to the layer. Defaults to None.
See https://docs.mapbox.com/style-spec/reference/layers/ for more info.
name (str, optional): The name of the layer. Defaults to None.
tooltip (bool, optional): Whether to show a tooltip when hovering over the layer. Defaults to True.
overlay (bool, optional): Whether the layer should be added as an overlay. Defaults to True.
control (bool, optional): Whether to include the layer in the layer control. Defaults to True.
show (bool, optional): Whether the layer should be shown initially. Defaults to True.
zoom_to_layer (bool, optional): Whether to zoom to the layer extent. Defaults to True.
**kwargs: Additional keyword arguments to pass to the PMTilesLayer constructor.
Returns:
None
"""
try:
if style is None:
style = common.pmtiles_style(url)
layer = PMTilesLayer(
url,
style=style,
name=name,
tooltip=tooltip,
overlay=overlay,
control=control,
show=show,
**kwargs,
)
self.add_child(layer)
if zoom_to_layer:
metadata = common.pmtiles_metadata(url)
bounds = metadata["bounds"]
self.zoom_to_bounds(bounds)
except Exception as e:
print(e)
def add_layer_control(self):
"""Adds layer control to the map."""
layer_ctrl = False
for item in self.to_dict()["children"]:
if item.startswith("layer_control"):
layer_ctrl = True
break
if not layer_ctrl:
folium.LayerControl().add_to(self)
def _repr_mimebundle_(self, **kwargs):
"""Adds Layer control to the map. Reference: https://ipython.readthedocs.io/en/stable/config/integrating.html#MyObject._repr_mimebundle_"""
if self.options["layersControl"]:
self.add_layer_control()
def set_center(self, lon: float, lat: float, zoom: Optional[int] = 10):
"""Centers the map view at a given coordinates with the given zoom level.
Args:
lon (float): The longitude of the center, in degrees.
lat (float): The latitude of the center, in degrees.
zoom (int, optional): The zoom level, from 1 to 24. Defaults to 10.
"""
self.fit_bounds([[lat, lon], [lat, lon]], max_zoom=zoom)
common.arc_zoom_to_extent(lon, lat, lon, lat)
def zoom_to_bounds(
self, bounds: Union[List[float], Tuple[float, float, float, float]]
):
"""Zooms to a bounding box in the form of [minx, miny, maxx, maxy].
Args:
bounds (list | tuple): A list/tuple containing minx, miny, maxx, maxy values for the bounds.
"""
# The folium fit_bounds method takes lat/lon bounds in the form [[south, west], [north, east]].
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
def zoom_to_gdf(self, gdf):
"""Zooms to the bounding box of a GeoPandas GeoDataFrame.
Args:
gdf (GeoDataFrame): A GeoPandas GeoDataFrame.
"""
bounds = gdf.total_bounds
self.zoom_to_bounds(bounds)
def add_basemap(
self, basemap: Optional[str] = "HYBRID", show: Optional[bool] = True, **kwargs
):
"""Adds a basemap to the map.
Args:
basemap (str, optional): Can be one of string from ee_basemaps. Defaults to 'HYBRID'.
show (bool, optional): Whether to show the basemap. Defaults to True.
**kwargs: Additional keyword arguments to pass to folium.TileLayer.
"""
import xyzservices
try:
if basemap in ["ROADMAP", "SATELLITE", "HYBRID", "TERRAIN"]:
layer = common.get_google_map(
basemap, backend="folium", show=show, **kwargs
)
layer.add_to(self)
return
if isinstance(basemap, xyzservices.TileProvider):
name = basemap.name
url = basemap.build_url()
attribution = basemap.attribution
if "max_zoom" in basemap.keys():
max_zoom = basemap["max_zoom"]
else:
max_zoom = 22
layer = folium.TileLayer(
tiles=url,
attr=attribution,
name=name,
max_zoom=max_zoom,
overlay=True,
control=True,
show=show,
**kwargs,
)
self.add_layer(layer)
common.arc_add_layer(url, name)
elif basemap in basemaps:
bmap = basemaps[basemap]
bmap.show = show
bmap.add_to(self)
if isinstance(basemaps[basemap], folium.TileLayer):
url = basemaps[basemap].tiles
elif isinstance(basemaps[basemap], folium.WmsTileLayer):
url = basemaps[basemap].url
common.arc_add_layer(url, basemap)
else:
print(
"Basemap can only be one of the following: {}".format(
", ".join(basemaps.keys())
)
)
except Exception:
raise Exception(
"Basemap can only be one of the following: {}".format(
", ".join(basemaps.keys())
)
)
def add_wms_layer(
self,
url: str,
layers: str,
name: Optional[str] = None,
attribution: Optional[str] = "",
overlay: Optional[bool] = True,
control: Optional[bool] = True,
shown: Optional[bool] = True,
format: Optional[str] = "image/png",
transparent: Optional[bool] = True,
version: Optional[str] = "1.1.1",
styles: Optional[str] = "",
**kwargs,
):
"""Add a WMS layer to the map.
Args:
url (str): The URL of the WMS web service.
layers (str): Comma-separated list of WMS layers to show.
name (str, optional): The layer name to use on the layer control. Defaults to None.
attribution (str, optional): The attribution of the data layer. Defaults to ''.
overlay (bool, optional): Allows overlay. Defaults to True.
control (bool, optional): Adds the layer to the layer control. Defaults to True.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
format (str, optional): WMS image format (use ‘image/png’ for layers with transparency). Defaults to 'image/png'.
transparent (bool, optional): Whether the layer shall allow transparency. Defaults to True.
version (str, optional): Version of the WMS service to use. Defaults to "1.1.1".
styles (str, optional): Comma-separated list of WMS styles. Defaults to "".
"""
try:
folium.raster_layers.WmsTileLayer(
url=url,
layers=layers,
name=name,
attr=attribution,
overlay=overlay,
control=control,
show=shown,
styles=styles,
fmt=format,
transparent=transparent,
version=version,
**kwargs,
).add_to(self)
except Exception as e:
raise Exception(e)
def add_wms_legend(
self,
url,
):
"""Add a WMS legend based on an image URL
Args:
url (str): URL of the WMS legend image. Should have this format if using wms legend: {geoserver}/wms?REQUEST=GetLegendGraphic&FORMAT=image/png&LAYER={layer}
"""
from branca.element import Figure, MacroElement, Element
# Check if the map is a Folium Map instance
if not isinstance(self, Map):
raise ValueError("The self argument must be an instance of folium.Map.")
# HTML template for the legend
legend_html = f"""
{{% macro html(this, kwargs) %}}
<div id="maplegend" style="position: fixed;
bottom: 50px;
right: 50px;
z-index:9999;
">
<img src="{ url }" alt="legend" style="width: 100%; height: 100%;">
</div>
{{% endmacro %}}
"""
# Create an Element with the HTML and add it to the map
macro = MacroElement()
macro._template = Template(legend_html)
self.get_root().add_child(macro)
def add_tile_layer(
self,
url: str,
name: str,
attribution: str,
overlay: Optional[bool] = True,
control: Optional[bool] = True,
shown: Optional[bool] = True,
opacity: Optional[float] = 1.0,
API_key: Optional[str] = None,
**kwargs,
):
"""Add a XYZ tile layer to the map.
Args:
url (str): The URL of the XYZ tile service.
name (str): The layer name to use on the layer control.
attribution (str): The attribution of the data layer.
overlay (bool, optional): Allows overlay. Defaults to True.
control (bool, optional): Adds the layer to the layer control. Defaults to True.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
opacity (float, optional): Sets the opacity for the layer.
API_key (str, optional): – API key for Cloudmade or Mapbox tiles. Defaults to True.
"""
if "max_zoom" not in kwargs:
kwargs["max_zoom"] = 30
if "max_native_zoom" not in kwargs:
kwargs["max_native_zoom"] = 30
try:
folium.raster_layers.TileLayer(
tiles=url,
name=name,
attr=attribution,
overlay=overlay,
control=control,
show=shown,
opacity=opacity,
API_key=API_key,
**kwargs,
).add_to(self)
common.arc_add_layer(url, name, shown, opacity)
except Exception as e:
raise Exception(e)
def add_raster(
self,
source: str,
indexes: Optional[int] = None,
colormap: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = "Raster",
array_args: Optional[Dict] = {},
**kwargs,
):
"""Add a local raster dataset to the map.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer) and
if the raster does not render properly, try installing jupyter-server-proxy using `pip install jupyter-server-proxy`,
then running the following code before calling this function. For more info, see https://bit.ly/3JbmF93.
import os
os.environ['LOCALTILESERVER_CLIENT_PREFIX'] = 'proxy/{port}'
Args:
source (str): The path to the GeoTIFF file or the URL of the Cloud Optimized GeoTIFF.
indexes (int, optional): The band(s) to use. Band indexing starts at 1. Defaults to None.
colormap (str, optional): The name of the colormap from `matplotlib` to use when plotting a single band. See https://matplotlib.org/stable/gallery/color/colormap_reference.html. Default is greyscale.
vmin (float, optional): The minimum value to use when colormapping the colormap when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the colormap when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to 'Raster'.
array_args (dict, optional): Additional arguments to pass to `array_to_image`. Defaults to {}.
"""
import numpy as np
import xarray as xr
if isinstance(source, np.ndarray) or isinstance(source, xr.DataArray):
source = common.array_to_image(source, **array_args)
tile_layer, tile_client = common.get_local_tile_layer(
source,
indexes=indexes,
colormap=colormap,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
tile_format="folium",
layer_name=layer_name,
return_client=True,
**kwargs,
)
self.add_layer(tile_layer)
bounds = tile_client.bounds() # [ymin, ymax, xmin, xmax]
bounds = (
bounds[2],
bounds[0],
bounds[3],
bounds[1],
) # [minx, miny, maxx, maxy]
self.zoom_to_bounds(bounds)
common.arc_add_layer(tile_layer.tiles, layer_name, True, 1.0)
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
add_local_tile = add_raster
def add_remote_tile(
self,
source: str,
indexes: Optional[int] = None,
colormap: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = None,
**kwargs,
):
"""Add a remote Cloud Optimized GeoTIFF (COG) to the map.
Args:
source (str): The path to the remote Cloud Optimized GeoTIFF.
indexes (int, optional): The band(s) to use. Band indexing starts at 1. Defaults to None.
colormap (str, optional): The name of the colormap from `matplotlib` to use when plotting a single band. See https://matplotlib.org/stable/gallery/color/colormap_reference.html. Default is greyscale.
vmin (float, optional): The minimum value to use when colormapping the palette when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the palette when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to None.
"""
if isinstance(source, str) and source.startswith("http"):
self.add_raster(
source,
indexes=indexes,
colormap=colormap,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
layer_name=layer_name,
**kwargs,
)
else:
raise Exception("The source must be a URL.")
def add_netcdf(
self,
filename: str,
variables: Optional[int] = None,
port: str = "default",
palette: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = "NetCDF layer",
shift_lon: Optional[bool] = True,
lat: Optional[str] = "lat",
lon: Optional[str] = "lon",
**kwargs,
):
"""Generate an ipyleaflet/folium TileLayer from a netCDF file.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer),
try adding to following two lines to the beginning of the notebook if the raster does not render properly.
import os
os.environ['LOCALTILESERVER_CLIENT_PREFIX'] = f'{os.environ['JUPYTERHUB_SERVICE_PREFIX'].lstrip('/')}/proxy/{{port}}'
Args:
filename (str): File path or HTTP URL to the netCDF file.
variables (int, optional): The variable/band names to extract data from the netCDF file. Defaults to None. If None, all variables will be extracted.
port (str, optional): The port to use for the server. Defaults to "default".
palette (str, optional): The name of the color palette from `palettable` to use when plotting a single band. See https://jiffyclub.github.io/palettable. Default is greyscale
vmin (float, optional): The minimum value to use when colormapping the palette when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the palette when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to "netCDF layer".
shift_lon (bool, optional): Flag to shift longitude values from [0, 360] to the range [-180, 180]. Defaults to True.
lat (str, optional): Name of the latitude variable. Defaults to 'lat'.
lon (str, optional): Name of the longitude variable. Defaults to 'lon'.
"""
tif, vars = common.netcdf_to_tif(
filename, shift_lon=shift_lon, lat=lat, lon=lon, return_vars=True
)
if variables is None:
if len(vars) >= 3:
band_idx = [1, 2, 3]
else:
band_idx = [1]
else:
if not set(variables).issubset(set(vars)):
raise ValueError(f"The variables must be a subset of {vars}.")
else:
band_idx = [vars.index(v) + 1 for v in variables]
self.add_raster(
tif,
band=band_idx,
palette=palette,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
layer_name=layer_name,
**kwargs,
)
def add_heatmap(
self,
data: Union[str, List[List[float]], pd.DataFrame],
latitude: Optional[str] = "latitude",
longitude: Optional[str] = "longitude",
value: Optional[str] = "value",
name: Optional[str] = "Heat map",
radius: Optional[int] = 25,
**kwargs,
):
"""Adds a heat map to the map. Reference: https://stackoverflow.com/a/54756617
Args:
data (str | list | pd.DataFrame): File path or HTTP URL to the input file or a list of data points in the format of [[x1, y1, z1], [x2, y2, z2]]. For example, https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/world_cities.csv
latitude (str, optional): The column name of latitude. Defaults to "latitude".
longitude (str, optional): The column name of longitude. Defaults to "longitude".
value (str, optional): The column name of values. Defaults to "value".
name (str, optional): Layer name to use. Defaults to "Heat map".
radius (int, optional): Radius of each “point” of the heatmap. Defaults to 25.
Raises:
ValueError: If data is not a list.
"""
import pandas as pd
try:
if isinstance(data, str):
df = pd.read_csv(data)
data = df[[latitude, longitude, value]].values.tolist()
elif isinstance(data, pd.DataFrame):
data = data[[latitude, longitude, value]].values.tolist()
elif isinstance(data, list):
pass
else:
raise ValueError("data must be a list, a DataFrame, or a file path.")
plugins.HeatMap(data, name=name, radius=radius, **kwargs).add_to(
folium.FeatureGroup(name=name).add_to(self)
)
except Exception as e:
raise Exception(e)
def add_markers_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
popup: Optional[List[str]] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
layer_name: Optional[str] = "Markers",
icon: Optional[str] = None,
icon_shape: Optional[str] = "circle-dot",
border_width: Optional[int] = 3,
border_color: Optional[str] = "#0000ff",
**kwargs,
):
"""Adds markers to the map from a csv or Pandas DataFrame containing x, y values.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
layer_name (str, optional): The name of the layer. Defaults to "Marker Cluster".
icon (str, optional): The Font-Awesome icon name to use to render the marker. Defaults to None.
icon_shape (str, optional): The shape of the marker, such as "retangle-dot", "circle-dot". Defaults to 'circle-dot'.
border_width (int, optional): The width of the border. Defaults to 3.
border_color (str, optional): The color of the border. Defaults to '#0000ff'.
kwargs (dict, optional): Additional keyword arguments to pass to BeautifyIcon. See
https://python-visualization.github.io/folium/plugins.html#folium.plugins.BeautifyIcon.
"""
import pandas as pd
from folium.plugins import BeautifyIcon
layer_group = folium.FeatureGroup(name=layer_name)
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if popup is None:
popup = col_names
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
for row in df.itertuples():
html = ""
for p in popup:
html = html + "<b>" + p + "</b>" + ": " + str(getattr(row, p)) + "<br>"
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
marker_icon = BeautifyIcon(
icon, icon_shape, border_width, border_color, **kwargs
)
folium.Marker(
location=[getattr(row, y), getattr(row, x)],
popup=popup_html,
icon=marker_icon,
).add_to(layer_group)
layer_group.add_to(self)
def add_osm_from_geocode(
self,
query: Union[str, dict, List],
which_result: Optional[int] = None,
by_osmid: Optional[bool] = False,
buffer_dist: Optional[float] = None,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM data of place(s) by name or ID to the map.
Args:
query (str | dict | list): Query string(s) or structured dict(s) to geocode.
which_result (int, optional): Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None.
by_osmid (bool, optional): If True, handle query as an OSM ID for lookup rather than text search. Defaults to False.
buffer_dist (float, optional): Distance to buffer around the place geometry, in meters. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_geocode(
query, which_result=which_result, by_osmid=by_osmid, buffer_dist=buffer_dist
)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_address(
self,
address: str,
tags: dict,
dist: Optional[int] = 1000,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within some distance N, S, E, W of address to the map.
Args:
address (str): The address to geocode and use as the central point around which to get the geometries.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
dist (int, optional): Distance in meters. Defaults to 1000.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_address(address, tags, dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_place(
self,
query: Union[str, dict, List],
tags: dict,
which_result: Optional[int] = None,
buffer_dist: Optional[float] = None,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within boundaries of geocodable place(s) to the map.
Args:
query (str | dict | list): Query string(s) or structured dict(s) to geocode.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
which_result (int, optional): Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None.
buffer_dist (float, optional): Distance to buffer around the place geometry, in meters. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_place(query, tags, which_result, buffer_dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_point(
self,
center_point: Tuple[float, float],
tags: dict,
dist: Optional[int] = 1000,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within some distance N, S, E, W of a point to the map.
Args:
center_point (tuple): The (lat, lng) center point around which to get the geometries.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
dist (int, optional): Distance in meters. Defaults to 1000.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_point(center_point, tags, dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_polygon(
self,
polygon,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within boundaries of a (multi)polygon to the map.
Args:
polygon (shapely.geometry.Polygon | shapely.geometry.MultiPolygon): Geographic boundaries to fetch geometries within
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_polygon(polygon, tags)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_bbox(
self,
north: float,
south: float,
east: float,
west: float,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within a N, S, E, W bounding box to the map.
Args:
north (float): Northern latitude of bounding box.
south (float): Southern latitude of bounding box.
east (float): Eastern longitude of bounding box.
west (float): Western longitude of bounding box.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_bbox(north, south, east, west, tags)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
def add_osm_from_view(
self,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within the current map view to the map.
Args:
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
pass # folium can't get map bounds. See https://github.com/python-visualization/folium/issues/1118
# bounds = self.get_bounds()
# north, south, east, west = (
# bounds[1][0],
# bounds[0][0],
# bounds[1][1],
# bounds[0][1],
# )
# gdf = osm_gdf_from_bbox(north, south, east, west, tags)
# geojson = gdf.__geo_interface__
# self.add_geojson(
# geojson,
# layer_name=layer_name,
# style=style,
# hover_style=hover_style,
# style_callback=style_callback,
# fill_colors=fill_colors,
# info_mode=info_mode,
# )
# self.zoom_to_gdf(gdf)
def add_cog_layer(
self,
url: str,
name: Optional[str] = "Untitled",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
bands: Optional[List] = None,
titiler_endpoint: Optional[str] = None,
zoom_to_layer=True,
**kwargs,
):
"""Adds a COG TileLayer to the map.
Args:
url (str): The URL of the COG tile layer.
name (str, optional): The layer name to use for the layer. Defaults to 'Untitled'.
attribution (str, optional): The attribution to use. Defaults to '.'.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
bands (list, optional): A list of bands to use. Defaults to None.
titiler_endpoint (str, optional): TiTiler endpoint. Defaults to "https://titiler.xyz".
zoom_to_layer (bool, optional): Whether to zoom to the layer extent. Defaults to True.
**kwargs: Arbitrary keyword arguments, including bidx, expression, nodata, unscale, resampling, rescale,
color_formula, colormap, colormap_name, return_mask. See https://developmentseed.org/titiler/endpoints/cog/
and https://cogeotiff.github.io/rio-tiler/colormap/. To select a certain bands, use bidx=[1, 2, 3].
apply a rescaling to multiple bands, use something like `rescale=["164,223","130,211","99,212"]`.
"""
tile_url = common.cog_tile(url, bands, titiler_endpoint, **kwargs)
bounds = common.cog_bounds(url, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
if zoom_to_layer:
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
def add_cog_mosaic(self, **kwargs):
raise NotImplementedError(
"This function is no longer supported.See https://github.com/opengeos/leafmap/issues/180."
)
def add_cog_mosaic_from_file(self, **kwargs):
raise NotImplementedError(
"This function is no longer supported.See https://github.com/opengeos/leafmap/issues/180."
)
def add_stac_layer(
self,
url: str = None,
collection: str = None,
item: str = None,
assets: Union[str, List] = None,
bands: List = None,
titiler_endpoint: Optional[str] = None,
name: Optional[str] = "STAC Layer",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
fit_bounds: Optional[bool] = True,
**kwargs,
):
"""Adds a STAC TileLayer to the map.
Args:
url (str): HTTP URL to a STAC item, e.g., https://canada-spot-ortho.s3.amazonaws.com/canada_spot_orthoimages/canada_spot5_orthoimages/S5_2007/S5_11055_6057_20070622/S5_11055_6057_20070622.json
collection (str): The Microsoft Planetary Computer STAC collection ID, e.g., landsat-8-c2-l2.
item (str): The Microsoft Planetary Computer STAC item ID, e.g., LC08_L2SP_047027_20201204_02_T1.
assets (str | list): The Microsoft Planetary Computer STAC asset ID, e.g., ["SR_B7", "SR_B5", "SR_B4"].
bands (list): A list of band names, e.g., ["SR_B7", "SR_B5", "SR_B4"]
titiler_endpoint (str, optional): Titiler endpoint, e.g., "https://titiler.xyz", "planetary-computer", "pc". Defaults to None.
name (str, optional): The layer name to use for the layer. Defaults to 'STAC Layer'.
attribution (str, optional): The attribution to use. Defaults to ''.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
fit_bounds (bool, optional): A flag indicating whether the map should be zoomed to the layer extent. Defaults to True.
"""
tile_url = common.stac_tile(
url, collection, item, assets, bands, titiler_endpoint, **kwargs
)
bounds = common.stac_bounds(url, collection, item, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
if fit_bounds:
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
def add_mosaic_layer(
self,
url: str,
titiler_endpoint: Optional[str] = None,
name: Optional[str] = "Mosaic Layer",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
**kwargs,
):
"""Adds a STAC TileLayer to the map.
Args:
url (str): HTTP URL to a MosaicJSON.
titiler_endpoint (str, optional): Titiler endpoint, e.g., "https://titiler.xyz". Defaults to None.
name (str, optional): The layer name to use for the layer. Defaults to 'Mosaic Layer'.
attribution (str, optional): The attribution to use. Defaults to ''.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
"""
tile_url = common.mosaic_tile(url, titiler_endpoint, **kwargs)
bounds = common.mosaic_bounds(url, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
def add_legend(
self,
title: Optional[str] = "Legend",
labels: Optional[List] = None,
colors: Optional[List] = None,
legend_dict: Optional[Dict] = None,
builtin_legend: Optional[str] = None,
opacity: Optional[float] = 1.0,
position: Optional[str] = "bottomright",
draggable: Optional[bool] = True,
style: Optional[Dict] = {},
shape_type: Optional[str] = "rectangle",
):
"""Adds a customized legend to the map. Reference: https://bit.ly/3oV6vnH.
If you want to add multiple legends to the map, you need to set the `draggable` argument to False.
Args:
title (str, optional): Title of the legend. Defaults to 'Legend'. Defaults to "Legend".
colors (list, optional): A list of legend colors. Defaults to None.
labels (list, optional): A list of legend labels. Defaults to None.
legend_dict (dict, optional): A dictionary containing legend items as keys and color as values.
If provided, legend_keys and legend_colors will be ignored. Defaults to None.
builtin_legend (str, optional): Name of the builtin legend to add to the map. Defaults to None.
opacity (float, optional): The opacity of the legend. Defaults to 1.0.
position (str, optional): The position of the legend, can be one of the following:
"topleft", "topright", "bottomleft", "bottomright". Defaults to "bottomright".
Note that position is only valid when draggable is False.
draggable (bool, optional): If True, the legend can be dragged to a new position. Defaults to True.
style: Additional keyword arguments to style the legend, such as position, bottom, right, z-index,
border, background-color, border-radius, padding, font-size, etc. The default style is:
style = {
'position': 'fixed',
'z-index': '9999',
'border': '2px solid grey',
'background-color': 'rgba(255, 255, 255, 0.8)',
'border-radius': '5px',
'padding': '10px',
'font-size': '14px',
'bottom': '20px',
'right': '5px'
}
shape_type (str, optional): The shape type of the legend item. It can be
either "rectangle", "line" or "circle". Defaults to "rectangle".
"""
content = common.create_legend(
title,
labels,
colors,
legend_dict,
builtin_legend,
opacity,
position,
draggable,
style=style,
shape_type=shape_type,
)
if draggable:
from branca.element import Template, MacroElement
content = (
'"""\n{% macro html(this, kwargs) %}\n'
+ content
+ '\n{% endmacro %}"""'
)
macro = MacroElement()
macro._template = Template(content)
self.get_root().add_child(macro)
else:
self.add_html(content, position=position)
def add_colorbar(
self,
colors: List,
vmin: Optional[int] = 0,
vmax: Optional[int] = 1,
index: Optional[List] = None,
caption: Optional[str] = "",
categorical: Optional[bool] = False,
step: Optional[int] = None,
**kwargs,
):
"""Add a colorbar to the map.
Args:
colors (list): The set of colors to be used for interpolation. Colors can be provided in the form: * tuples of RGBA ints between 0 and 255 (e.g: (255, 255, 0) or (255, 255, 0, 255)) * tuples of RGBA floats between 0. and 1. (e.g: (1.,1.,0.) or (1., 1., 0., 1.)) * HTML-like string (e.g: “#ffff00) * a color name or shortcut (e.g: “y” or “yellow”)
vmin (int, optional): The minimal value for the colormap. Values lower than vmin will be bound directly to colors[0].. Defaults to 0.
vmax (float, optional): The maximal value for the colormap. Values higher than vmax will be bound directly to colors[-1]. Defaults to 1.0.
index (list, optional):The values corresponding to each color. It has to be sorted, and have the same length as colors. If None, a regular grid between vmin and vmax is created.. Defaults to None.
caption (str, optional): The caption for the colormap. Defaults to "".
categorical (bool, optional): Whether or not to create a categorical colormap. Defaults to False.
step (int, optional): The step to split the LinearColormap into a StepColormap. Defaults to None.
"""
from box import Box
from branca.colormap import LinearColormap
if isinstance(colors, Box):
try:
colors = list(colors["default"])
except Exception as e:
print("The provided color list is invalid.")
raise Exception(e)
if all(len(color) == 6 for color in colors):
colors = ["#" + color for color in colors]
colormap = LinearColormap(
colors=colors, index=index, vmin=vmin, vmax=vmax, caption=caption
)
if categorical:
if step is not None:
colormap = colormap.to_step(step)
elif index is not None:
colormap = colormap.to_step(len(index) - 1)
else:
colormap = colormap.to_step(3)
self.add_child(colormap)
def add_shp(
self,
in_shp: str,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds a shapefile to the map. See https://python-visualization.github.io/folium/modules.html#folium.features.GeoJson for more info about setting style.
Args:
in_shp (str): The input file path or HTTP URL (*.zip) to the shapefile.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
Raises:
FileNotFoundError: The provided shapefile could not be found.
"""
import geopandas as gpd
gdf = gpd.read_file(in_shp)
self.add_gdf(
gdf,
layer_name,
zoom_to_layer,
info_mode,
**kwargs,
)
def add_geojson(
self,
in_geojson: str,
layer_name: Optional[str] = "Untitled",
encoding: Optional[str] = "utf-8",
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds a GeoJSON file to the map.
Args:
in_geojson (str): The input file path to the GeoJSON.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
encoding (str, optional): The encoding of the GeoJSON file. Defaults to "utf-8".
info_mode (str, optional): Displays the attributes by either on_hover or on_click.
Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
Raises:
FileNotFoundError: The provided GeoJSON file could not be found.
"""
import shutil
import json
import random
import geopandas as gpd
gdf = None
try:
if isinstance(in_geojson, str):
if in_geojson.startswith("http"):
if common.is_jupyterlite():
import pyodide # pylint: disable=E0401
output = os.path.basename(in_geojson)
output = os.path.abspath(output)
obj = pyodide.http.open_url(in_geojson)
with open(output, "w") as fd:
shutil.copyfileobj(obj, fd)
with open(output, "r") as fd:
data = json.load(fd)
else:
gdf = gpd.read_file(in_geojson, encoding=encoding)
else:
gdf = gpd.read_file(in_geojson, encoding=encoding)
elif isinstance(in_geojson, dict):
gdf = gpd.GeoDataFrame.from_features(in_geojson)
elif isinstance(in_geojson, gpd.GeoDataFrame):
gdf = in_geojson
else:
raise TypeError("The input geojson must be a type of str or dict.")
except Exception as e:
raise Exception(e)
if gdf.crs is None:
print(
f"Warning: The dataset does not have a CRS defined. Assuming EPSG:4326."
)
gdf.crs = "EPSG:4326"
elif gdf.crs != "EPSG:4326":
gdf = gdf.to_crs("EPSG:4326")
data = gdf.__geo_interface__
# interchangeable parameters between ipyleaflet and folium.
if "style_callback" in kwargs:
kwargs["style_function"] = kwargs.pop("style_callback")
style_dict = {}
if "style_function" not in kwargs and ("style" not in gdf.columns):
if "style" in kwargs:
style_dict = kwargs["style"]
if isinstance(kwargs["style"], dict) and len(kwargs["style"]) > 0:
kwargs["style_function"] = lambda x: style_dict
kwargs.pop("style")
elif "fill_colors" not in kwargs:
style_dict = {
# "stroke": True,
"color": "#3388ff",
"weight": 2,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 0,
# "dashArray": "9"
# "clickable": True,
}
kwargs["style_function"] = lambda x: style_dict
if "hover_style" in kwargs:
kwargs.pop("hover_style")
if "fill_colors" in kwargs:
fill_colors = kwargs["fill_colors"]
def random_color(feature):
style_dict["fillColor"] = random.choice(fill_colors)
return style_dict
kwargs["style_function"] = random_color
kwargs.pop("fill_colors")
if "weight" not in style_dict:
style_dict["weight"] = 2
if "highlight_function" not in kwargs and ("style" not in gdf.columns):
kwargs["highlight_function"] = lambda feat: {
"weight": style_dict["weight"] + 2,
"fillOpacity": 0,
}
tooltip = None
popup = None
if info_mode is not None:
if "fields" in kwargs:
props = kwargs["fields"]
kwargs.pop("fields")
else:
props = list(data["features"][0]["properties"].keys())
if "style" in gdf.columns:
props.remove("style")
if info_mode == "on_hover":
tooltip = folium.GeoJsonTooltip(fields=props)
elif info_mode == "on_click":
popup = folium.GeoJsonPopup(fields=props)
geojson = folium.GeoJson(
data=data, name=layer_name, tooltip=tooltip, popup=popup, **kwargs
)
geojson.add_to(self)
if zoom_to_layer:
bounds = bounds = gdf.total_bounds
self.zoom_to_bounds(bounds)
def add_gdf(
self,
gdf,
layer_name: Optional[str] = "Untitled",
zoom_to_layer: Optional[bool] = True,
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a GeoPandas GeoDataFrameto the map.
Args:
gdf (GeoDataFrame): A GeoPandas GeoDataFrame.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
zoom_to_layer (bool, optional): Whether to zoom to the layer.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
for col in gdf.columns:
if gdf[col].dtype in ["datetime64[ns]", "datetime64[ns, UTC]"]:
gdf[col] = gdf[col].astype(str)
self.add_geojson(
gdf,
layer_name=layer_name,
info_mode=info_mode,
zoom_to_layer=zoom_to_layer,
**kwargs,
)
def add_gdf_from_postgis(
self,
sql: str,
con,
layer_name: Optional[str] = "Untitled",
zoom_to_layer: Optional[bool] = True,
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a GeoPandas GeoDataFrameto the map.
Args:
sql (str): SQL query to execute in selecting entries from database, or name of the table to read from the database.
con (sqlalchemy.engine.Engine): Active connection to the database to query.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
zoom_to_layer (bool, optional): Whether to zoom to the layer.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
if "fill_colors" in kwargs:
kwargs.pop("fill_colors")
gdf = common.read_postgis(sql, con, **kwargs)
data = common.gdf_to_geojson(gdf, epsg="4326")
self.add_geojson(data, layer_name=layer_name, info_mode=info_mode, **kwargs)
if zoom_to_layer:
import numpy as np
bounds = gdf.to_crs(epsg="4326").bounds
west = np.min(bounds["minx"])
south = np.min(bounds["miny"])
east = np.max(bounds["maxx"])
north = np.max(bounds["maxy"])
self.fit_bounds([[south, east], [north, west]])
def add_kml(
self,
in_kml: str,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a KML file to the map.
Args:
in_kml (str): The input file path to the KML.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
Raises:
FileNotFoundError: The provided KML file could not be found.
"""
if in_kml.startswith("http") and in_kml.endswith(".kml"):
out_dir = os.path.abspath("./cache")
if not os.path.exists(out_dir):
os.makedirs(out_dir)
in_kml = common.download_file(in_kml)
if not os.path.exists(in_kml):
raise FileNotFoundError("The downloaded kml file could not be found.")
else:
in_kml = os.path.abspath(in_kml)
if not os.path.exists(in_kml):
raise FileNotFoundError("The provided KML could not be found.")
self.add_vector(in_kml, layer_name, info_mode=info_mode, **kwargs)
def add_vector(
self,
filename: str,
layer_name: Optional[str] = "Untitled",
bbox: Optional[Tuple] = None,
mask: Optional[Dict] = None,
rows: Optional[Union[int, slice]] = None,
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds any geopandas-supported vector dataset to the map.
Args:
filename (str): Either the absolute or relative path to the file or URL to be opened, or any object with a read() method (such as an open file or StringIO).
layer_name (str, optional): The layer name to use. Defaults to "Untitled".
bbox (tuple | GeoDataFrame or GeoSeries | shapely Geometry, optional): Filter features by given bounding box, GeoSeries, GeoDataFrame or a shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with mask. Defaults to None.
mask (dict | GeoDataFrame or GeoSeries | shapely Geometry, optional): Filter for features that intersect with the given dict-like geojson geometry, GeoSeries, GeoDataFrame or shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with bbox. Defaults to None.
rows (int or slice, optional): Load in specific rows by passing an integer (first n rows) or a slice() object.. Defaults to None.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
"""
import fiona
import geopandas as gpd
if isinstance(filename, str) and filename.endswith(".kml"):
fiona.drvsupport.supported_drivers["KML"] = "rw"
gdf = gpd.read_file(
filename,
bbox=bbox,
mask=mask,
rows=rows,
driver="KML",
)
else:
gdf = gpd.read_file(
filename,
bbox=bbox,
mask=mask,
rows=rows,
)
self.add_gdf(
gdf,
layer_name,
zoom_to_layer,
info_mode,
**kwargs,
)
def add_planet_by_month(
self,
year: Optional[int] = 2016,
month: Optional[int] = 1,
layer_name: Optional[str] = None,
api_key: Optional[str] = None,
token_name: Optional[str] = "PLANET_API_KEY",
**kwargs,
):
"""Adds a Planet global mosaic by month to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Args:
year (int, optional): The year of Planet global mosaic, must be >=2016. Defaults to 2016.
month (int, optional): The month of Planet global mosaic, must be 1-12. Defaults to 1.
layer_name (str, optional): The layer name to use. Defaults to None.
api_key (str, optional): The Planet API key. Defaults to None.
token_name (str, optional): The environment variable name of the API key. Defaults to "PLANET_API_KEY".
"""
if layer_name is None and "name" in kwargs:
layer_name = kwargs.pop("name")
layer = common.planet_tile_by_month(
year, month, layer_name, api_key, token_name, tile_format="folium"
)
layer.add_to(self)
def add_planet_by_quarter(
self,
year: Optional[int] = 2016,
quarter: Optional[int] = 1,
layer_name: Optional[str] = None,
api_key: Optional[str] = None,
token_name: Optional[str] = "PLANET_API_KEY",
**kwargs,
):
"""Adds a Planet global mosaic by quarter to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Args:
year (int, optional): The year of Planet global mosaic, must be >=2016. Defaults to 2016.
quarter (int, optional): The quarter of Planet global mosaic, must be 1-12. Defaults to 1.
layer_name (str, optional): The layer name to use. Defaults to None.
api_key (str, optional): The Planet API key. Defaults to None.
token_name (str, optional): The environment variable name of the API key. Defaults to "PLANET_API_KEY".
"""
if layer_name is None and "name" in kwargs:
layer_name = kwargs.pop("name")
layer = common.planet_tile_by_quarter(
year, quarter, layer_name, api_key, token_name, tile_format="folium"
)
layer.add_to(self)
def to_html(self, outfile: Optional[str] = None, **kwargs) -> str:
"""Exports a map as an HTML file.
Args:
outfile (str, optional): File path to the output HTML. Defaults to None.
Raises:
ValueError: If it is an invalid HTML file.
Returns:
str: A string containing the HTML code.
"""
if self.options["layersControl"]:
self.add_layer_control()
if outfile is not None:
if not outfile.endswith(".html"):
raise ValueError("The output file extension must be html.")
outfile = os.path.abspath(outfile)
out_dir = os.path.dirname(outfile)
if not os.path.exists(out_dir):
os.makedirs(out_dir)
self.save(outfile, **kwargs)
else:
outfile = os.path.abspath(common.random_string() + ".html")
self.save(outfile, **kwargs)
out_html = ""
with open(outfile) as f:
lines = f.readlines()
out_html = "".join(lines)
os.remove(outfile)
return out_html
def to_streamlit(
self,
width: Optional[int] = None,
height: Optional[int] = 600,
scrolling: Optional[bool] = False,
add_layer_control: Optional[bool] = True,
bidirectional: Optional[bool] = False,
**kwargs,
):
"""Renders `folium.Figure` or `folium.Map` in a Streamlit app. This method is a static Streamlit Component, meaning, no information is passed back from Leaflet on browser interaction.
Args:
width (int, optional): Width of the map. Defaults to None.
height (int, optional): Height of the map. Defaults to 600.
scrolling (bool, optional): Whether to allow the map to scroll. Defaults to False.
add_layer_control (bool, optional): Whether to add the layer control. Defaults to True.
bidirectional (bool, optional): Whether to add bidirectional functionality to the map. The streamlit-folium package is required to use the bidirectional functionality. Defaults to False.
Raises:
ImportError: If streamlit is not installed.
Returns:
streamlit.components: components.html object.
"""
try:
import streamlit.components.v1 as components # pylint: disable=E0401
if add_layer_control:
self.add_layer_control()
if bidirectional:
from streamlit_folium import st_folium # pylint: disable=E0401
output = st_folium(self, width=width, height=height)
return output
else:
# if responsive:
# make_map_responsive = """
# <style>
# [title~="st.iframe"] { width: 100%}
# </style>
# """
# st.markdown(make_map_responsive, unsafe_allow_html=True)
return components.html(
self.to_html(), width=width, height=height, scrolling=scrolling
)
except Exception as e:
raise Exception(e)
def st_map_center(self, st_component) -> Tuple:
"""Get the center of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
tuple: The center of the map.
"""
bounds = st_component["bounds"]
west = bounds["_southWest"]["lng"]
south = bounds["_southWest"]["lat"]
east = bounds["_northEast"]["lng"]
north = bounds["_northEast"]["lat"]
return (south + (north - south) / 2, west + (east - west) / 2)
def st_map_bounds(self, st_component) -> Tuple:
"""Get the bounds of the map in the format of (miny, minx, maxy, maxx).
Args:
st_component (st_folium): The streamlit component.
Returns:
tuple: The bounds of the map.
"""
bounds = st_component["bounds"]
south = bounds["_southWest"]["lat"]
west = bounds["_southWest"]["lng"]
north = bounds["_northEast"]["lat"]
east = bounds["_northEast"]["lng"]
bounds = [[south, west], [north, east]]
return bounds
def st_fit_bounds(self):
"""Fit the map to the bounds of the map.
Returns:
folium.Map: The map.
"""
try:
import streamlit as st # pylint: disable=E0401
if "map_bounds" in st.session_state:
bounds = st.session_state["map_bounds"]
self.fit_bounds(bounds)
except Exception as e:
raise Exception(e)
def st_last_draw(self, st_component):
"""Get the last draw feature of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
str: The last draw of the map.
"""
return st_component["last_active_drawing"]
def st_last_click(self, st_component):
"""Get the last click feature of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
str: The last click of the map.
"""
coords = st_component["last_clicked"]
return (coords["lat"], coords["lng"])
def st_draw_features(self, st_component):
"""Get the draw features of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
list: The draw features of the map.
"""
return st_component["all_drawings"]
def add_title(
self,
title: str,
align: Optional[str] = "center",
font_size: Optional[str] = "16px",
style=None,
):
"""Adds a title to the map.
Args:
title (str): The title to use.
align (str, optional): The alignment of the title, can be ["center", "left", "right"]. Defaults to "center".
font_size (str, optional): The font size in the unit of px. Defaults to "16px".
style ([type], optional): The style to use. Defaults to None.
"""
if style is None:
title_html = """
<h3 align={} style="font-size:{}"><b>{}</b></h3>
""".format(
align, font_size, title
)
else:
title_html = """
<h3 align={} style={}><b>{}</b></h3>
""".format(
align, style, title
)
self.get_root().html.add_child(folium.Element(title_html))
def static_map(
self,
width: Optional[int] = 950,
height: Optional[int] = 600,
read_only: Optional[bool] = False,
out_file: Optional[str] = None,
**kwargs,
):
"""Display a folium static map in a Jupyter Notebook.
Args
m (folium.Map): A folium map.
width (int, optional): Width of the map. Defaults to 950.
height (int, optional): Height of the map. Defaults to 600.
read_only (bool, optional): Whether to hide the side panel to disable map customization. Defaults to False.
out_file (str, optional): Output html file path. Defaults to None.
"""
if isinstance(self, folium.Map):
if out_file is None:
out_file = "./cache/" + "folium_" + common.random_string(3) + ".html"
out_dir = os.path.abspath(os.path.dirname(out_file))
if not os.path.exists(out_dir):
os.makedirs(out_dir)
self.to_html(out_file)
common.display_html(out_file, width=width, height=height)
else:
raise TypeError("The provided map is not a folium map.")
def add_census_data(
self, wms: str, layer: str, census_dict: Optional[Dict] = None, **kwargs
):
"""Adds a census data layer to the map.
Args:
wms (str): The wms to use. For example, "Current", "ACS 2021", "Census 2020". See the complete list at https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_wms.html
layer (str): The layer name to add to the map.
census_dict (dict, optional): A dictionary containing census data. Defaults to None. It can be obtained from the get_census_dict() function.
"""
try:
if census_dict is None:
census_dict = common.get_census_dict()
if wms not in census_dict.keys():
raise ValueError(
f"The provided WMS is invalid. It must be one of {census_dict.keys()}"
)
layers = census_dict[wms]["layers"]
if layer not in layers:
raise ValueError(
f"The layer name is not valid. It must be one of {layers}"
)
url = census_dict[wms]["url"]
if "name" not in kwargs:
kwargs["name"] = layer
if "attribution" not in kwargs:
kwargs["attribution"] = "U.S. Census Bureau"
if "format" not in kwargs:
kwargs["format"] = "image/png"
if "transparent" not in kwargs:
kwargs["transparent"] = True
self.add_wms_layer(url, layer, **kwargs)
except Exception as e:
raise Exception(e)
def add_xyz_service(self, provider: str, **kwargs):
"""Add a XYZ tile layer to the map.
Args:
provider (str): A tile layer name starts with xyz or qms. For example, xyz.OpenTopoMap,
Raises:
ValueError: The provider is not valid. It must start with xyz or qms.
"""
import xyzservices.providers as xyz
from xyzservices import TileProvider
if provider.startswith("xyz"):
name = provider[4:]
xyz_provider = xyz.flatten()[name]
url = xyz_provider.build_url()
attribution = xyz_provider.attribution
if attribution.strip() == "":
attribution = " "
self.add_tile_layer(url, name, attribution)
elif provider.startswith("qms"):
name = provider[4:]
qms_provider = TileProvider.from_qms(name)
url = qms_provider.build_url()
attribution = qms_provider.attribution
if attribution.strip() == "":
attribution = " "
self.add_tile_layer(url=url, name=name, attribution=attribution)
else:
raise ValueError(
f"The provider {provider} is not valid. It must start with xyz or qms."
)
def add_marker(
self,
location: Union[List, Tuple],
popup: Optional[str] = None,
tooltip: Optional[str] = None,
icon: Optional[str] = None,
draggable: Optional[bool] = False,
**kwargs,
):
"""Adds a marker to the map. More info about marker options at https://python-visualization.github.io/folium/modules.html#folium.map.Marker.
Args:
location (list | tuple): The location of the marker in the format of [lat, lng].
popup (str, optional): The popup text. Defaults to None.
tooltip (str, optional): The tooltip text. Defaults to None.
icon (str, optional): The icon to use. Defaults to None.
draggable (bool, optional): Whether the marker is draggable. Defaults to False.
"""
if isinstance(location, list):
location = tuple(location)
if isinstance(location, tuple):
folium.Marker(
location=location,
popup=popup,
tooltip=tooltip,
icon=icon,
draggable=draggable,
**kwargs,
).add_to(self)
else:
raise TypeError("The location must be a list or a tuple.")
def add_colormap(
self,
width: Optional[float] = 4.0,
height: Optional[float] = 0.3,
vmin: Optional[float] = 0,
vmax: Optional[float] = 1.0,
palette: Optional[List] = None,
vis_params: Optional[dict] = None,
cmap: Optional[str] = "gray",
discrete: Optional[bool] = False,
label: Optional[str] = None,
label_size: Optional[int] = 12,
label_weight: Optional[str] = "normal",
tick_size: Optional[int] = 10,
bg_color: Optional[str] = "white",
orientation: Optional[str] = "horizontal",
dpi: Optional[Union[str, float]] = "figure",
transparent: Optional[bool] = False,
position: Optional[Tuple] = (70, 5),
**kwargs,
):
"""Add a colorbar to the map. Under the hood, it uses matplotlib to generate the colorbar, save it as a png file, and add it to the map using m.add_image().
Args:
width (float): Width of the colorbar in inches. Default is 4.0.
height (float): Height of the colorbar in inches. Default is 0.3.
vmin (float): Minimum value of the colorbar. Default is 0.
vmax (float): Maximum value of the colorbar. Default is 1.0.
palette (list): List of colors to use for the colorbar. It can also be a cmap name, such as ndvi, ndwi, dem, coolwarm. Default is None.
vis_params (dict): Visualization parameters as a dictionary. See https://developers.google.com/earth-engine/guides/image_visualization for options.
cmap (str, optional): Matplotlib colormap. Defaults to "gray". See https://matplotlib.org/3.3.4/tutorials/colors/colormaps.html#sphx-glr-tutorials-colors-colormaps-py for options.
discrete (bool, optional): Whether to create a discrete colorbar. Defaults to False.
label (str, optional): Label for the colorbar. Defaults to None.
label_size (int, optional): Font size for the colorbar label. Defaults to 12.
label_weight (str, optional): Font weight for the colorbar label, can be "normal", "bold", etc. Defaults to "normal".
tick_size (int, optional): Font size for the colorbar tick labels. Defaults to 10.
bg_color (str, optional): Background color for the colorbar. Defaults to "white".
orientation (str, optional): Orientation of the colorbar, such as "vertical" and "horizontal". Defaults to "horizontal".
dpi (float | str, optional): The resolution in dots per inch. If 'figure', use the figure's dpi value. Defaults to "figure".
transparent (bool, optional): Whether to make the background transparent. Defaults to False.
position (tuple, optional): The position of the colormap in the format of (x, y),
the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0).
**kwargs: Other keyword arguments to pass to matplotlib.pyplot.savefig().
Returns:
str: Path to the output image.
"""
colorbar = common.save_colorbar(
None,
width,
height,
vmin,
vmax,
palette,
vis_params,
cmap,
discrete,
label,
label_size,
label_weight,
tick_size,
bg_color,
orientation,
dpi,
transparent,
show_colorbar=False,
**kwargs,
)
self.add_image(colorbar, position=position)
def add_points_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
popup: Optional[List] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
layer_name: Optional[str] = "Marker Cluster",
color_column: Optional[str] = None,
marker_colors: Optional[List] = None,
icon_colors: Optional[List] = ["white"],
icon_names: Optional[List] = ["info"],
angle: Optional[int] = 0,
prefix: Optional[str] = "fa",
add_legend: Optional[bool] = True,
max_cluster_radius: Optional[int] = 80,
**kwargs,
):
"""Adds a marker cluster to the map.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
layer_name (str, optional): The name of the layer. Defaults to "Marker Cluster".
color_column (str, optional): The column name for the color values. Defaults to None.
marker_colors (list, optional): A list of colors to be used for the markers. Defaults to None.
icon_colors (list, optional): A list of colors to be used for the icons. Defaults to ['white'].
icon_names (list, optional): A list of names to be used for the icons. More icons can be found
at https://fontawesome.com/v4/icons or https://getbootstrap.com/docs/3.3/components/?utm_source=pocket_mylist. Defaults to ['info'].
angle (int, optional): The angle of the icon. Defaults to 0.
prefix (str, optional): The prefix states the source of the icon. 'fa' for font-awesome or 'glyphicon' for bootstrap 3. Defaults to 'fa'.
add_legend (bool, optional): If True, a legend will be added to the map. Defaults to True.
max_cluster_radius (int, optional): The maximum radius that a cluster will cover from the central marker (in pixels).
**kwargs: Other keyword arguments to pass to folium.MarkerCluster(). For a list of available options,
see https://github.com/Leaflet/Leaflet.markercluster. For example, to change the cluster radius, use options={"maxClusterRadius": 50}.
"""
import pandas as pd
if "maxClusterRadius" not in kwargs:
kwargs["maxClusterRadius"] = max_cluster_radius
color_options = [
"red",
"blue",
"green",
"purple",
"orange",
"darkred",
"lightred",
"beige",
"darkblue",
"darkgreen",
"cadetblue",
"darkpurple",
"white",
"pink",
"lightblue",
"lightgreen",
"gray",
"black",
"lightgray",
]
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if color_column is not None and color_column not in col_names:
raise ValueError(
f"The color column {color_column} does not exist in the dataframe."
)
if color_column is not None:
items = list(set(df[color_column]))
else:
items = None
if color_column is not None and marker_colors is None:
if len(items) > len(color_options):
raise ValueError(
f"The number of unique values in the color column {color_column} is greater than the number of available colors."
)
else:
marker_colors = color_options[: len(items)]
elif color_column is not None and marker_colors is not None:
if len(items) != len(marker_colors):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if items is not None:
if len(icon_colors) == 1:
icon_colors = icon_colors * len(items)
elif len(items) != len(icon_colors):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if len(icon_names) == 1:
icon_names = icon_names * len(items)
elif len(items) != len(icon_names):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if popup is None:
popup = col_names
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
marker_cluster = plugins.MarkerCluster(name=layer_name, **kwargs).add_to(self)
for idx, row in df.iterrows():
html = ""
for p in popup:
html = html + "<b>" + p + "</b>" + ": " + str(row[p]) + "<br>"
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
if items is not None:
index = items.index(row[color_column])
marker_icon = folium.Icon(
color=marker_colors[index],
icon_color=icon_colors[index],
icon=icon_names[index],
angle=angle,
prefix=prefix,
)
else:
marker_icon = None
folium.Marker(
location=[row[y], row[x]],
popup=popup_html,
icon=marker_icon,
).add_to(marker_cluster)
if items is not None and add_legend:
marker_colors = [common.check_color(c) for c in marker_colors]
self.add_legend(
title=color_column.title(), colors=marker_colors, labels=items
)
def add_circle_markers_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
radius: Optional[int] = 10,
popup: Optional[List] = None,
tooltip: Optional[List] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
font_size: Optional[int] = 2,
**kwargs,
):
"""Adds a marker cluster to the map.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
radius (int, optional): The radius of the circle. Defaults to 10.
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
tooltip (list, optional): A list of column names to be used as the tooltip. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
font_size (int, optional): The font size of the popup. Defaults to 2.
"""
import pandas as pd
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if "color" not in kwargs:
kwargs["color"] = None
if "fill" not in kwargs:
kwargs["fill"] = True
if "fill_color" not in kwargs:
kwargs["fill_color"] = "blue"
if "fill_opacity" not in kwargs:
kwargs["fill_opacity"] = 0.7
if popup is None:
popup = col_names
if not isinstance(popup, list):
popup = [popup]
if tooltip is not None:
if not isinstance(tooltip, list):
tooltip = [tooltip]
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
for idx, row in df.iterrows():
html = ""
for p in popup:
html = (
html
+ f"<font size='{font_size}'><b>"
+ p
+ "</b>"
+ ": "
+ str(row[p])
+ "<br></font>"
)
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
if tooltip is not None:
html = ""
for p in tooltip:
html = (
html
+ f"<font size='{font_size}'><b>"
+ p
+ "</b>"
+ ": "
+ str(row[p])
+ "<br></font>"
)
tooltip_str = folium.Tooltip(html)
else:
tooltip_str = None
folium.CircleMarker(
location=[row[y], row[x]],
radius=radius,
popup=popup_html,
tooltip=tooltip_str,
**kwargs,
).add_to(self)
def add_labels(
self,
data: Union[pd.DataFrame, str],
column: str,
font_size: Optional[str] = "12pt",
font_color: Optional[str] = "black",
font_family: Optional[str] = "arial",
font_weight: Optional[str] = "normal",
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
draggable: Optional[bool] = True,
layer_name: Optional[str] = "Labels",
**kwargs,
):
"""Adds a label layer to the map. Reference: https://python-visualization.github.io/folium/modules.html#folium.features.DivIcon
Args:
data (pd.DataFrame | gpd.GeoDataFrame | str): The input data to label.
column (str): The column name of the data to label.
font_size (str, optional): The font size of the labels. Defaults to "12pt".
font_color (str, optional): The font color of the labels. Defaults to "black".
font_family (str, optional): The font family of the labels. Defaults to "arial".
font_weight (str, optional): The font weight of the labels, can be normal, bold. Defaults to "normal".
x (str, optional): The column name of the longitude. Defaults to "longitude".
y (str, optional): The column name of the latitude. Defaults to "latitude".
draggable (bool, optional): Whether the labels are draggable. Defaults to True.
layer_name (str, optional): The name of the layer. Defaults to "Labels".
"""
import warnings
import pandas as pd
from folium.features import DivIcon
warnings.filterwarnings("ignore")
if isinstance(data, pd.DataFrame):
df = data
if "geometry" in data.columns or ("geom" in data.columns):
df[x] = df.centroid.x
df[y] = df.centroid.y
elif isinstance(data, str):
ext = os.path.splitext(data)[1]
if ext == ".csv":
df = pd.read_csv(data)
elif ext in [".geojson", ".json", ".shp", ".gpkg"]:
try:
import geopandas as gpd
df = gpd.read_file(data)
df[x] = df.centroid.x
df[y] = df.centroid.y
except ImportError:
print("geopandas is required to read geojson.")
return
else:
raise ValueError("data must be a DataFrame or an ee.FeatureCollection.")
if column not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
if x not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
if y not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
try:
size = int(font_size.replace("pt", ""))
except:
raise ValueError("font_size must be something like '10pt'")
layer_group = folium.FeatureGroup(name=layer_name)
for index in df.index:
html = f'<div style="font-size: {font_size};color:{font_color};font-family:{font_family};font-weight: {font_weight}">{df[column][index]}</div>'
folium.Marker(
location=[df[y][index], df[x][index]],
icon=DivIcon(
icon_size=(1, 1),
icon_anchor=(size, size),
html=html,
**kwargs,
),
draggable=draggable,
).add_to(layer_group)
layer_group.add_to(self)
def split_map(
self,
left_layer: Optional[str] = "TERRAIN",
right_layer: Optional[str] = "OpenTopoMap",
left_args: Optional[dict] = {},
right_args: Optional[dict] = {},
left_array_args={},
right_array_args={},
left_label: Optional[str] = None,
right_label: Optional[str] = None,
left_position: Optional[str] = "bottomleft",
right_position: Optional[str] = "bottomright",
**kwargs,
):
"""Adds a split-panel map.
Args:
left_layer (str, optional): The left tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'TERRAIN'.
right_layer (str, optional): The right tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'OpenTopoMap'.
left_args (dict, optional): The arguments for the left tile layer. Defaults to {}.
right_args (dict, optional): The arguments for the right tile layer. Defaults to {}.
left_array_args (dict, optional): The arguments for array_to_image for the left layer. Defaults to {}.
right_array_args (dict, optional): The arguments for array_to_image for the right layer. Defaults to {}.
"""
if "max_zoom" not in left_args:
left_args["max_zoom"] = 30
if "max_native_zoom" not in left_args:
left_args["max_native_zoom"] = 30
if "max_zoom" not in right_args:
right_args["max_zoom"] = 30
if "max_native_zoom" not in right_args:
right_args["max_native_zoom"] = 30
if "layer_name" not in left_args:
left_args["layer_name"] = "Left Layer"
if "layer_name" not in right_args:
right_args["layer_name"] = "Right Layer"
bounds = None
try:
if left_label is not None:
left_name = left_label
else:
left_name = "Left Layer"
if right_label is not None:
right_name = right_label
else:
right_name = "Right Layer"
if isinstance(left_layer, str):
if left_layer in basemaps.keys():
left_layer = basemaps[left_layer]
elif left_layer.startswith("http") and left_layer.endswith(".tif"):
url = common.cog_tile(left_layer, **left_args)
bbox = common.cog_bounds(left_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
left_layer = folium.raster_layers.TileLayer(
tiles=url,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif left_layer.startswith("http") and left_layer.endswith(".json"):
left_tile_url = common.stac_tile(left_layer, **left_args)
bbox = common.stac_bounds(left_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
left_layer = folium.raster_layers.TileLayer(
tiles=left_tile_url,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif os.path.exists(left_layer):
left_layer, left_client = common.get_local_tile_layer(
left_layer,
tile_format="folium",
return_client=True,
**left_args,
)
bounds = common.image_bounds(left_client)
else:
left_layer = folium.raster_layers.TileLayer(
tiles=left_layer,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif isinstance(left_layer, folium.raster_layers.TileLayer) or isinstance(
left_layer, folium.WmsTileLayer
):
pass
elif common.is_array(left_layer):
left_layer = common.array_to_image(left_layer, **left_array_args)
left_layer, _ = common.get_local_tile_layer(
left_layer,
return_client=True,
tile_format="folium",
**left_args,
)
else:
raise ValueError(
f"left_layer must be one of the following: {', '.join(basemaps.keys())} or a string url to a tif file."
)
if isinstance(right_layer, str):
if right_layer in basemaps.keys():
right_layer = basemaps[right_layer]
elif right_layer.startswith("http") and right_layer.endswith(".tif"):
url = common.cog_tile(right_layer, **right_args)
bbox = common.cog_bounds(right_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
right_layer = folium.raster_layers.TileLayer(
tiles=url,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif right_layer.startswith("http") and right_layer.endswith(".json"):
right_tile_url = common.stac_tile(right_layer, **left_args)
bbox = common.stac_bounds(right_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
right_layer = folium.raster_layers.TileLayer(
tiles=right_tile_url,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif os.path.exists(right_layer):
right_layer, right_client = common.get_local_tile_layer(
right_layer,
tile_format="folium",
return_client=True,
**right_args,
)
bounds = common.image_bounds(right_client)
else:
right_layer = folium.raster_layers.TileLayer(
tiles=right_layer,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif isinstance(right_layer, folium.raster_layers.TileLayer) or isinstance(
left_layer, folium.WmsTileLayer
):
pass
elif common.is_array(right_layer):
right_layer = common.array_to_image(right_layer, **right_array_args)
right_layer, _ = common.get_local_tile_layer(
right_layer,
return_client=True,
tile_format="folium",
**right_args,
)
else:
raise ValueError(
f"right_layer must be one of the following: {', '.join(basemaps.keys())} or a string url to a tif file."
)
control = folium.plugins.SideBySideLayers(
layer_left=left_layer, layer_right=right_layer
)
left_layer.add_to(self)
right_layer.add_to(self)
control.add_to(self)
if left_label is not None:
if "<" not in left_label:
left_label = f"<h4>{left_label}</h4>"
self.add_html(left_label, position=left_position)
if right_label is not None:
if "<" not in right_label:
right_label = f"<h4>{right_label}</h4>"
self.add_html(right_label, position=right_position)
if bounds is not None:
self.fit_bounds(bounds)
except Exception as e:
print("The provided layers are invalid!")
raise ValueError(e)
def add_data(
self,
data: Union[str, pd.DataFrame],
column: str,
cmap: Optional[str] = None,
colors: Optional[List] = None,
labels: Optional[List] = None,
scheme: Optional[str] = "Quantiles",
k: Optional[int] = 5,
add_legend: Optional[bool] = True,
legend_title: Optional[str] = None,
legend_position: Optional[str] = "bottomright",
legend_kwds: Optional[dict] = None,
classification_kwds: Optional[dict] = None,
style_function: Optional[Callable] = None,
highlight_function: Optional[Callable] = None,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
encoding: Optional[str] = "utf-8",
**kwargs,
):
"""Add vector data to the map with a variety of classification schemes.
Args:
data (str | pd.DataFrame | gpd.GeoDataFrame): The data to classify. It can be a filepath to a vector dataset, a pandas dataframe, or a geopandas geodataframe.
column (str): The column to classify.
cmap (str, optional): The name of a colormap recognized by matplotlib. Defaults to None.
colors (list, optional): A list of colors to use for the classification. Defaults to None.
labels (list, optional): A list of labels to use for the legend. Defaults to None.
scheme (str, optional): Name of a choropleth classification scheme (requires mapclassify).
Name of a choropleth classification scheme (requires mapclassify).
A mapclassify.MapClassifier object will be used
under the hood. Supported are all schemes provided by mapclassify (e.g.
'BoxPlot', 'EqualInterval', 'FisherJenks', 'FisherJenksSampled',
'HeadTailBreaks', 'JenksCaspall', 'JenksCaspallForced',
'JenksCaspallSampled', 'MaxP', 'MaximumBreaks',
'NaturalBreaks', 'Quantiles', 'Percentiles', 'StdMean',
'UserDefined'). Arguments can be passed in classification_kwds.
k (int, optional): Number of classes (ignored if scheme is None or if column is categorical). Default to 5.
add_legend (bool, optional): Whether to add a legend to the map. Defaults to True.
legend_title (str, optional): The title of the legend. Defaults to None.
legend_position (str, optional): The position of the legend. Can be 'topleft', 'topright', 'bottomleft', or 'bottomright'. Defaults to 'bottomright'.
legend_kwds (dict, optional): Keyword arguments to pass to :func:`matplotlib.pyplot.legend` or `matplotlib.pyplot.colorbar`. Defaults to None.
Keyword arguments to pass to :func:`matplotlib.pyplot.legend` or
Additional accepted keywords when `scheme` is specified:
fmt : string
A formatting specification for the bin edges of the classes in the
legend. For example, to have no decimals: ``{"fmt": "{:.0f}"}``.
labels : list-like
A list of legend labels to override the auto-generated labblels.
Needs to have the same number of elements as the number of
classes (`k`).
interval : boolean (default False)
An option to control brackets from mapclassify legend.
If True, open/closed interval brackets are shown in the legend.
classification_kwds (dict, optional): Keyword arguments to pass to mapclassify. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style_function (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
style_callback is a function that takes the feature as argument and should return a dictionary of the following form:
style_callback = lambda feat: {"fillColor": feat["properties"]["color"]}
style is a dictionary of the following form:
style = {
"stroke": False,
"color": "#ff0000",
"weight": 1,
"opacity": 1,
"fill": True,
"fillColor": "#ffffff",
"fillOpacity": 1.0,
"dashArray": "9"
"clickable": True,
}
hightlight_function (function, optional): Highlighting function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
highlight_function is a function that takes the feature as argument and should return a dictionary of the following form:
highlight_function = lambda feat: {"fillColor": feat["properties"]["color"]}
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
encoding (str, optional): The encoding of the GeoJSON file. Defaults to "utf-8".
**kwargs: Additional keyword arguments to pass to the GeoJSON class, such as fields, which can be a list of column names to be included in the popup.
"""
import warnings
gdf, legend_dict = common.classify(
data=data,
column=column,
cmap=cmap,
colors=colors,
labels=labels,
scheme=scheme,
k=k,
legend_kwds=legend_kwds,
classification_kwds=classification_kwds,
)
if legend_title is None:
legend_title = column
if "style" in kwargs:
warnings.warn(
"The style arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("style")
if "hover_style" in kwargs:
warnings.warn(
"The hover_style arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("hover_style")
if "style_callback" in kwargs:
warnings.warn(
"The style_callback arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("style_callback")
if style_function is None:
style_function = lambda feat: {
# "stroke": False,
# "color": "#ff0000",
"weight": 1,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 1.0,
# "dashArray": "9"
# "clickable": True,
"fillColor": feat["properties"]["color"],
}
if highlight_function is None:
highlight_function = lambda feat: {
"weight": 2,
"fillOpacity": 0.5,
}
self.add_gdf(
gdf,
layer_name=layer_name,
style_function=style_function,
highlight_function=highlight_function,
info_mode=info_mode,
encoding=encoding,
**kwargs,
)
if add_legend:
self.add_legend(title=legend_title, legend_dict=legend_dict)
def add_image(
self,
image: str,
position: Optional[Tuple] = (0, 0),
**kwargs,
):
"""Add an image to the map.
Args:
image (str | ipywidgets.Image): The image to add.
position (tuple, optional): The position of the image in the format of (x, y),
the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0).
"""
import base64
if isinstance(image, str):
if image.startswith("http"):
html = f'<img src="{image}">'
if isinstance(position, tuple):
position = "bottomright"
self.add_html(html, position=position, **kwargs)
elif os.path.exists(image):
if position == "bottomleft":
position = (5, 5)
elif position == "bottomright":
position = (80, 5)
elif position == "topleft":
position = (5, 60)
elif position == "topright":
position = (80, 60)
with open(image, "rb") as lf:
# open in binary mode, read bytes, encode, decode obtained bytes as utf-8 string
b64_content = base64.b64encode(lf.read()).decode("utf-8")
widget = plugins.FloatImage(
"data:image/png;base64,{}".format(b64_content),
bottom=position[1],
left=position[0],
)
widget.add_to(self)
else:
raise Exception("Invalid image")
def add_widget(
self, content: str, position: Optional[str] = "bottomright", **kwargs
):
"""Add a widget (e.g., text, HTML, figure) to the map.
Args:
content (str): The widget to add.
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
from matplotlib import figure
import base64
from io import BytesIO
allowed_positions = ["topleft", "topright", "bottomleft", "bottomright"]
if position not in allowed_positions:
raise Exception(f"position must be one of {allowed_positions}")
try:
if isinstance(content, str):
widget = CustomControl(content, position=position)
widget.add_to(self)
elif isinstance(content, figure.Figure):
buf = BytesIO()
content.savefig(buf, format="png")
buf.seek(0)
b64_content = base64.b64encode(buf.read()).decode("utf-8")
widget = CustomControl(
f"""<img src="data:image/png;base64,{b64_content}">""",
position=position,
)
widget.add_to(self)
else:
raise Exception("The content must be a string or a matplotlib figure")
except Exception as e:
raise Exception(f"Error adding widget: {e}")
def add_html(self, html: str, position: Optional[str] = "bottomright", **kwargs):
"""Add HTML to the map.
Args:
html (str): The HTML to add.
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
self.add_widget(html, position=position, **kwargs)
def add_text(
self,
text: str,
fontsize: Optional[int] = 20,
fontcolor: Optional[str] = "black",
bold: Optional[bool] = False,
padding: Optional[str] = "5px",
background: Optional[bool] = True,
bg_color: Optional[str] = "white",
border_radius: Optional[str] = "5px",
position: Optional[str] = "bottomright",
**kwargs,
):
"""Add text to the map.
Args:
text (str): The text to add.
fontsize (int, optional): The font size. Defaults to 20.
fontcolor (str, optional): The font color. Defaults to "black".
bold (bool, optional): Whether to use bold font. Defaults to False.
padding (str, optional): The padding. Defaults to "5px".
background (bool, optional): Whether to use background. Defaults to True.
bg_color (str, optional): The background color. Defaults to "white".
border_radius (str, optional): The border radius. Defaults to "5px".
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
if background:
text = f"""<div style="font-size: {fontsize}px; color: {fontcolor}; font-weight: {'bold' if bold else 'normal'};
padding: {padding}; background-color: {bg_color};
border-radius: {border_radius};">{text}</div>"""
else:
text = f"""<div style="font-size: {fontsize}px; color: {fontcolor}; font-weight: {'bold' if bold else 'normal'};
padding: {padding};">{text}</div>"""
self.add_html(text, position=position, **kwargs)
def add_vector_tile(
self,
url: Optional[str],
styles: Optional[Union[dict, str]] = {},
layer_name: Optional[str] = "Vector Tile",
**kwargs,
):
"""Adds a VectorTileLayer to the map. It wraps the folium.plugins.VectorGridProtobuf class. See
https://github.com/python-visualization/folium/blob/main/folium/plugins/vectorgrid_protobuf.py#L7
Args:
url (str, optional): The URL of the tile layer
styles (dict | str, optional): Style dict, specific to the vector tile source.
If styles is given as a string, it will be passed directly to folium.plugins.VectorGrid
directly, ignoring additional kwargs. See the "conditional styling" example in
https://github.com/iwpnd/folium-vectorgrid
layer_name (str, optional): The layer name to use for the layer. Defaults to 'Vector Tile'.
kwargs: Additional keyword arguments to pass to the folium.plugins.VectorGridProtobuf class.
"""
if isinstance(styles, str):
options = styles
else:
options = {}
for key, value in kwargs.items():
options[key] = value
if "vector_tile_layer_styles" in options:
styles = options["vector_tile_layer_styles"]
del options["vector_tile_layer_styles"]
if styles:
options["vectorTileLayerStyles"] = styles
vc = plugins.VectorGridProtobuf(url, layer_name, options)
self.add_child(vc)
add_vector_tile_layer = add_vector_tile
def to_gradio(
self, width: Optional[str] = "100%", height: Optional[str] = "500px", **kwargs
):
"""Converts the map to an HTML string that can be used in Gradio. Removes unsupported elements, such as
attribution and any code blocks containing functions. See https://github.com/gradio-app/gradio/issues/3190
Args:
width (str, optional): The width of the map. Defaults to '100%'.
height (str, optional): The height of the map. Defaults to '500px'.
Returns:
str: The HTML string to use in Gradio.
"""
if isinstance(width, int):
width = f"{width}px"
if isinstance(height, int):
height = f"{height}px"
html = self.to_html()
lines = html.split("\n")
output = []
skipped_lines = []
for index, line in enumerate(lines):
if index in skipped_lines:
continue
if line.lstrip().startswith('{"attribution":'):
continue
elif "on(L.Draw.Event.CREATED, function(e)" in line:
for i in range(14):
skipped_lines.append(index + i)
elif "L.Control.geocoder" in line:
for i in range(5):
skipped_lines.append(index + i)
elif "function(e)" in line:
print(
f"Warning: The folium plotting backend does not support functions in code blocks. Please delete line {index + 1}."
)
else:
output.append(line + "\n")
return f"""<iframe style="width: {width}; height: {height}" name="result" allow="midi; geolocation; microphone; camera;
display-capture; encrypted-media;" sandbox="allow-modals allow-forms
allow-scripts allow-same-origin allow-popups
allow-top-navigation-by-user-activation allow-downloads" allowfullscreen=""
allowpaymentrequest="" frameborder="0" srcdoc='{"".join(output)}'></iframe>"""
def oam_search(
self,
bbox: Optional[Union[List, str]] = None,
start_date: Optional[str] = None,
end_date: Optional[str] = None,
limit: Optional[int] = 100,
info_mode: Optional[str] = "on_click",
layer_args: Optional[dict] = {},
add_image: Optional[bool] = True,
**kwargs,
):
"""Search OpenAerialMap for images within a bounding box and time range.
Args:
bbox (list | str, optional): The bounding box [xmin, ymin, xmax, ymax] to search within. Defaults to None.
start_date (str, optional): The start date to search within, such as "2015-04-20T00:00:00.000Z". Defaults to None.
end_date (str, optional): The end date to search within, such as "2015-04-21T00:00:00.000Z". Defaults to None.
limit (int, optional): The maximum number of results to return. Defaults to 100.
info_mode (str, optional): The mode to use for the info popup. Can be 'on_hover' or 'on_click'. Defaults to 'on_click'.
layer_args (dict, optional): The layer arguments for add_gdf() function. Defaults to {}.
add_image (bool, optional): Whether to add the first 10 images to the map. Defaults to True.
**kwargs: Additional keyword arguments to pass to the API. See https://hotosm.github.io/oam-api/
"""
gdf = common.oam_search(
bbox=bbox, start_date=start_date, end_date=end_date, limit=limit, **kwargs
)
if "layer_name" not in layer_args:
layer_args["layer_name"] = "Footprints"
if "style" not in layer_args:
layer_args["style"] = {
# "stroke": True,
"color": "#3388ff",
"weight": 2,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 0,
# "dashArray": "9"
# "clickable": True,
}
if "highlight_function" not in layer_args:
layer_args["highlight_function"] = lambda feat: {
"weight": layer_args["style"]["weight"] + 2,
"fillOpacity": 0,
}
if gdf is not None:
self.add_gdf(gdf, info_mode=info_mode, **layer_args)
setattr(self, "oam_gdf", gdf)
if add_image:
ids = gdf["_id"].tolist()
images = gdf["tms"].tolist()
if len(images) > 5:
print(f"Found {len(images)} images. \nShowing the first 5.")
for index, image in enumerate(images):
if index == 5:
break
self.add_tile_layer(
url=image, name=ids[index], attribution="OpenAerialMap"
)
else:
print("No images found.")
def add_nwi(
self,
data: Union[str, "gpd.GeoDataFrame"],
col_name: str = "WETLAND_TY",
add_legend: bool = True,
style_callback: Optional[Callable[[dict], dict]] = None,
layer_name: str = "Wetlands",
**kwargs,
) -> None:
"""
Adds National Wetlands Inventory (NWI) data to the map.
Args:
data (Union[str, gpd.GeoDataFrame]): The NWI data to add. It can be a file path or a GeoDataFrame.
col_name (str): The column name to use for styling. Defaults to "WETLAND_TY".
add_legend (bool): Whether to add a legend to the map. Defaults to True.
style_callback (Optional[Callable[[dict], dict]]): A callback function to style the features. Defaults to None.
layer_name (str): The name of the layer to add. Defaults to "Wetlands".
**kwargs: Additional keyword arguments to pass to the add_vector or add_gdf method.
Returns:
None
"""
nwi = {
"Freshwater Forested/Shrub Wetland": "#008837",
"Freshwater Emergent Wetland": "#7fc31c",
"Freshwater Pond": "#688cc0",
"Estuarine and Marine Wetland": "#66c2a5",
"Riverine": "#0190bf",
"Lake": "#13007c",
"Estuarine and Marine Deepwater": "#007c88",
"Other": "#b28656",
}
def nwi_color(feature):
return {
"color": "black",
"fillColor": (
nwi[feature["properties"][col_name]]
if feature["properties"][col_name] in nwi
else "gray"
),
"fillOpacity": 0.6,
"weight": 1,
}
if style_callback is None:
style_callback = nwi_color
if isinstance(data, str):
self.add_vector(
data, style_callback=style_callback, layer_name=layer_name, **kwargs
)
else:
self.add_gdf(
data, style_callback=style_callback, layer_name=layer_name, **kwargs
)
if add_legend:
self.add_legend(title="Wetland Type", builtin_legend="NWI")
def add_nlcd(self, years: list = [2023], add_legend: bool = True, **kwargs) -> None:
"""
Adds National Land Cover Database (NLCD) data to the map.
Args:
years (list): A list of years to add. It can be any of 1985-2023. Defaults to [2023].
add_legend (bool): Whether to add a legend to the map. Defaults to True.
**kwargs: Additional keyword arguments to pass to the add_cog_layer method.
Returns:
None
"""
allowed_years = list(range(1985, 2024, 1))
url = (
"https://s3-us-west-2.amazonaws.com/mrlc/Annual_NLCD_LndCov_{}_CU_C1V0.tif"
)
if "colormap" not in kwargs:
kwargs["colormap"] = {
"11": "#466b9f",
"12": "#d1def8",
"21": "#dec5c5",
"22": "#d99282",
"23": "#eb0000",
"24": "#ab0000",
"31": "#b3ac9f",
"41": "#68ab5f",
"42": "#1c5f2c",
"43": "#b5c58f",
"51": "#af963c",
"52": "#ccb879",
"71": "#dfdfc2",
"72": "#d1d182",
"73": "#a3cc51",
"74": "#82ba9e",
"81": "#dcd939",
"82": "#ab6c28",
"90": "#b8d9eb",
"95": "#6c9fb8",
}
if "zoom_to_layer" not in kwargs:
kwargs["zoom_to_layer"] = False
for year in years:
if year not in allowed_years:
raise ValueError(f"Year must be one of {allowed_years}.")
year_url = url.format(year)
self.add_cog_layer(year_url, name=f"NLCD {year}", **kwargs)
if add_legend:
self.add_legend(title="NLCD Land Cover Type", builtin_legend="NLCD")
def add_nlcd_ts(
self,
left_year: int = 1985,
right_layer: int = 2023,
widget_width: str = "70px",
add_legend: bool = True,
add_layer_control: bool = True,
**kwargs: Any,
) -> None:
print("The folium plotting backend does not support this function.")
def clear_controls(self):
"""Clears all controls on the map."""
pass
def remove_labels(self, **kwargs):
"""Removes a layer from the map."""
print("The folium plotting backend does not support removing labels.")
def add_minimap(self, zoom=5, position="bottomright"):
"""Adds a minimap (overview) to the ipyleaflet map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def add_point_layer(
self, filename, popup=None, layer_name="Marker Cluster", **kwargs
):
"""Adds a point layer to the map with a popup attribute."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def add_raster_legacy(
self,
image,
bands=None,
layer_name=None,
colormap=None,
x_dim="x",
y_dim="y",
):
"""Adds a local raster dataset to the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def add_time_slider(
self,
layers_dict={},
labels=None,
time_interval=1,
position="bottomright",
slider_length="150px",
**kwargs,
):
"""Adds a time slider to the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def add_xy_data(
self,
in_csv,
x="longitude",
y="latitude",
label=None,
layer_name="Marker cluster",
):
"""Adds points from a CSV file containing lat/lon information and display data on the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def basemap_demo(self):
"""A demo for using leafmap basemaps."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def find_layer(self, name):
"""Finds layer by name."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def find_layer_index(self, name):
"""Finds layer index by name."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def get_layer_names(self):
"""Gets layer names as a list."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def get_scale(self):
"""Returns the approximate pixel scale of the current map view, in meters."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def image_overlay(self, url: str, bounds: Tuple, name: str):
"""Overlays an image from the Internet or locally on the map.
Args:
url (str): http URL or local file path to the image.
bounds (tuple): bounding box of the image in the format of (lower_left(lat, lon), upper_right(lat, lon)), such as ((13, -130), (32, -100)).
name (str): name of the layer to show on the layer control.
"""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def layer_opacity(self, name, value=1.0):
"""Changes layer opacity."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def to_image(self, outfile=None, monitor=1):
"""Saves the map as a PNG or JPG image."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def toolbar_reset(self):
"""Reset the toolbar so that no tool is selected."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def video_overlay(self, url, bounds, name):
"""Overlays a video from the Internet on the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
def add_search_control(
self, url, marker=None, zoom=None, position="topleft", **kwargs
):
"""Adds a search control to the map."""
print("The folium plotting backend does not support this function.")
def save_draw_features(self, out_file: str, indent: Optional[int] = 4, **kwargs):
"""Save the draw features to a file.
Args:
out_file (str): The output file path.
indent (int, optional): The indentation level when saving data as a GeoJSON. Defaults to 4.
"""
print("The folium plotting backend does not support this function.")
def edit_vector(self, data: Union[str, dict], **kwargs):
"""Edit a vector layer.
Args:
data (dict | str): The data to edit. It can be a GeoJSON dictionary or a file path.
"""
print("The folium plotting backend does not support this function.")
def add_velocity(
self,
data,
zonal_speed,
meridional_speed,
latitude_dimension="lat",
longitude_dimension="lon",
velocity_scale=0.01,
max_velocity=20,
display_options={},
name="Velocity",
**kwargs,
):
print(f"The folium plotting backend does not support this function.")
def user_roi_bounds(self, decimals: Optional[int] = 4) -> List:
"""Get the bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy).
Args:
decimals (int, optional): The number of decimals to round the coordinates to. Defaults to 4.
Returns:
list: The bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy).
"""
print(f"The folium plotting backend does not support this function.")
add(self, object, **kwargs)
¶
Adds something to the map. This method is not implemented in folium.
Source code in leafmap/foliumap.py
def add(self, object, **kwargs):
"""Adds something to the map. This method is not implemented in folium."""
pass
add_basemap(self, basemap='HYBRID', show=True, **kwargs)
¶
Adds a basemap to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
basemap |
str |
Can be one of string from ee_basemaps. Defaults to 'HYBRID'. |
'HYBRID' |
show |
bool |
Whether to show the basemap. Defaults to True. |
True |
**kwargs |
Additional keyword arguments to pass to folium.TileLayer. |
{} |
Source code in leafmap/foliumap.py
def add_basemap(
self, basemap: Optional[str] = "HYBRID", show: Optional[bool] = True, **kwargs
):
"""Adds a basemap to the map.
Args:
basemap (str, optional): Can be one of string from ee_basemaps. Defaults to 'HYBRID'.
show (bool, optional): Whether to show the basemap. Defaults to True.
**kwargs: Additional keyword arguments to pass to folium.TileLayer.
"""
import xyzservices
try:
if basemap in ["ROADMAP", "SATELLITE", "HYBRID", "TERRAIN"]:
layer = common.get_google_map(
basemap, backend="folium", show=show, **kwargs
)
layer.add_to(self)
return
if isinstance(basemap, xyzservices.TileProvider):
name = basemap.name
url = basemap.build_url()
attribution = basemap.attribution
if "max_zoom" in basemap.keys():
max_zoom = basemap["max_zoom"]
else:
max_zoom = 22
layer = folium.TileLayer(
tiles=url,
attr=attribution,
name=name,
max_zoom=max_zoom,
overlay=True,
control=True,
show=show,
**kwargs,
)
self.add_layer(layer)
common.arc_add_layer(url, name)
elif basemap in basemaps:
bmap = basemaps[basemap]
bmap.show = show
bmap.add_to(self)
if isinstance(basemaps[basemap], folium.TileLayer):
url = basemaps[basemap].tiles
elif isinstance(basemaps[basemap], folium.WmsTileLayer):
url = basemaps[basemap].url
common.arc_add_layer(url, basemap)
else:
print(
"Basemap can only be one of the following: {}".format(
", ".join(basemaps.keys())
)
)
except Exception:
raise Exception(
"Basemap can only be one of the following: {}".format(
", ".join(basemaps.keys())
)
)
add_census_data(self, wms, layer, census_dict=None, **kwargs)
¶
Adds a census data layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
wms |
str |
The wms to use. For example, "Current", "ACS 2021", "Census 2020". See the complete list at https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_wms.html |
required |
layer |
str |
The layer name to add to the map. |
required |
census_dict |
dict |
A dictionary containing census data. Defaults to None. It can be obtained from the get_census_dict() function. |
None |
Source code in leafmap/foliumap.py
def add_census_data(
self, wms: str, layer: str, census_dict: Optional[Dict] = None, **kwargs
):
"""Adds a census data layer to the map.
Args:
wms (str): The wms to use. For example, "Current", "ACS 2021", "Census 2020". See the complete list at https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_wms.html
layer (str): The layer name to add to the map.
census_dict (dict, optional): A dictionary containing census data. Defaults to None. It can be obtained from the get_census_dict() function.
"""
try:
if census_dict is None:
census_dict = common.get_census_dict()
if wms not in census_dict.keys():
raise ValueError(
f"The provided WMS is invalid. It must be one of {census_dict.keys()}"
)
layers = census_dict[wms]["layers"]
if layer not in layers:
raise ValueError(
f"The layer name is not valid. It must be one of {layers}"
)
url = census_dict[wms]["url"]
if "name" not in kwargs:
kwargs["name"] = layer
if "attribution" not in kwargs:
kwargs["attribution"] = "U.S. Census Bureau"
if "format" not in kwargs:
kwargs["format"] = "image/png"
if "transparent" not in kwargs:
kwargs["transparent"] = True
self.add_wms_layer(url, layer, **kwargs)
except Exception as e:
raise Exception(e)
add_circle_markers_from_xy(self, data, x='longitude', y='latitude', radius=10, popup=None, tooltip=None, min_width=100, max_width=200, font_size=2, **kwargs)
¶
Adds a marker cluster to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str | pd.DataFrame |
A csv or Pandas DataFrame containing x, y, z values. |
required |
x |
str |
The column name for the x values. Defaults to "longitude". |
'longitude' |
y |
str |
The column name for the y values. Defaults to "latitude". |
'latitude' |
radius |
int |
The radius of the circle. Defaults to 10. |
10 |
popup |
list |
A list of column names to be used as the popup. Defaults to None. |
None |
tooltip |
list |
A list of column names to be used as the tooltip. Defaults to None. |
None |
min_width |
int |
The minimum width of the popup. Defaults to 100. |
100 |
max_width |
int |
The maximum width of the popup. Defaults to 200. |
200 |
font_size |
int |
The font size of the popup. Defaults to 2. |
2 |
Source code in leafmap/foliumap.py
def add_circle_markers_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
radius: Optional[int] = 10,
popup: Optional[List] = None,
tooltip: Optional[List] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
font_size: Optional[int] = 2,
**kwargs,
):
"""Adds a marker cluster to the map.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
radius (int, optional): The radius of the circle. Defaults to 10.
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
tooltip (list, optional): A list of column names to be used as the tooltip. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
font_size (int, optional): The font size of the popup. Defaults to 2.
"""
import pandas as pd
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if "color" not in kwargs:
kwargs["color"] = None
if "fill" not in kwargs:
kwargs["fill"] = True
if "fill_color" not in kwargs:
kwargs["fill_color"] = "blue"
if "fill_opacity" not in kwargs:
kwargs["fill_opacity"] = 0.7
if popup is None:
popup = col_names
if not isinstance(popup, list):
popup = [popup]
if tooltip is not None:
if not isinstance(tooltip, list):
tooltip = [tooltip]
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
for idx, row in df.iterrows():
html = ""
for p in popup:
html = (
html
+ f"<font size='{font_size}'><b>"
+ p
+ "</b>"
+ ": "
+ str(row[p])
+ "<br></font>"
)
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
if tooltip is not None:
html = ""
for p in tooltip:
html = (
html
+ f"<font size='{font_size}'><b>"
+ p
+ "</b>"
+ ": "
+ str(row[p])
+ "<br></font>"
)
tooltip_str = folium.Tooltip(html)
else:
tooltip_str = None
folium.CircleMarker(
location=[row[y], row[x]],
radius=radius,
popup=popup_html,
tooltip=tooltip_str,
**kwargs,
).add_to(self)
add_cog_layer(self, url, name='Untitled', attribution='.', opacity=1.0, shown=True, bands=None, titiler_endpoint=None, zoom_to_layer=True, **kwargs)
¶
Adds a COG TileLayer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the COG tile layer. |
required |
name |
str |
The layer name to use for the layer. Defaults to 'Untitled'. |
'Untitled' |
attribution |
str |
The attribution to use. Defaults to '.'. |
'.' |
opacity |
float |
The opacity of the layer. Defaults to 1. |
1.0 |
shown |
bool |
A flag indicating whether the layer should be on by default. Defaults to True. |
True |
bands |
list |
A list of bands to use. Defaults to None. |
None |
titiler_endpoint |
str |
TiTiler endpoint. Defaults to "https://titiler.xyz". |
None |
zoom_to_layer |
bool |
Whether to zoom to the layer extent. Defaults to True. |
True |
**kwargs |
Arbitrary keyword arguments, including bidx, expression, nodata, unscale, resampling, rescale,
color_formula, colormap, colormap_name, return_mask. See https://developmentseed.org/titiler/endpoints/cog/
and https://cogeotiff.github.io/rio-tiler/colormap/. To select a certain bands, use bidx=[1, 2, 3].
apply a rescaling to multiple bands, use something like |
{} |
Source code in leafmap/foliumap.py
def add_cog_layer(
self,
url: str,
name: Optional[str] = "Untitled",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
bands: Optional[List] = None,
titiler_endpoint: Optional[str] = None,
zoom_to_layer=True,
**kwargs,
):
"""Adds a COG TileLayer to the map.
Args:
url (str): The URL of the COG tile layer.
name (str, optional): The layer name to use for the layer. Defaults to 'Untitled'.
attribution (str, optional): The attribution to use. Defaults to '.'.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
bands (list, optional): A list of bands to use. Defaults to None.
titiler_endpoint (str, optional): TiTiler endpoint. Defaults to "https://titiler.xyz".
zoom_to_layer (bool, optional): Whether to zoom to the layer extent. Defaults to True.
**kwargs: Arbitrary keyword arguments, including bidx, expression, nodata, unscale, resampling, rescale,
color_formula, colormap, colormap_name, return_mask. See https://developmentseed.org/titiler/endpoints/cog/
and https://cogeotiff.github.io/rio-tiler/colormap/. To select a certain bands, use bidx=[1, 2, 3].
apply a rescaling to multiple bands, use something like `rescale=["164,223","130,211","99,212"]`.
"""
tile_url = common.cog_tile(url, bands, titiler_endpoint, **kwargs)
bounds = common.cog_bounds(url, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
if zoom_to_layer:
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
add_colorbar(self, colors, vmin=0, vmax=1, index=None, caption='', categorical=False, step=None, **kwargs)
¶
Add a colorbar to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
colors |
list |
The set of colors to be used for interpolation. Colors can be provided in the form: * tuples of RGBA ints between 0 and 255 (e.g: (255, 255, 0) or (255, 255, 0, 255)) * tuples of RGBA floats between 0. and 1. (e.g: (1.,1.,0.) or (1., 1., 0., 1.)) * HTML-like string (e.g: “#ffff00) * a color name or shortcut (e.g: “y” or “yellow”) |
required |
vmin |
int |
The minimal value for the colormap. Values lower than vmin will be bound directly to colors[0].. Defaults to 0. |
0 |
vmax |
float |
The maximal value for the colormap. Values higher than vmax will be bound directly to colors[-1]. Defaults to 1.0. |
1 |
index |
list |
The values corresponding to each color. It has to be sorted, and have the same length as colors. If None, a regular grid between vmin and vmax is created.. Defaults to None. |
None |
caption |
str |
The caption for the colormap. Defaults to "". |
'' |
categorical |
bool |
Whether or not to create a categorical colormap. Defaults to False. |
False |
step |
int |
The step to split the LinearColormap into a StepColormap. Defaults to None. |
None |
Source code in leafmap/foliumap.py
def add_colorbar(
self,
colors: List,
vmin: Optional[int] = 0,
vmax: Optional[int] = 1,
index: Optional[List] = None,
caption: Optional[str] = "",
categorical: Optional[bool] = False,
step: Optional[int] = None,
**kwargs,
):
"""Add a colorbar to the map.
Args:
colors (list): The set of colors to be used for interpolation. Colors can be provided in the form: * tuples of RGBA ints between 0 and 255 (e.g: (255, 255, 0) or (255, 255, 0, 255)) * tuples of RGBA floats between 0. and 1. (e.g: (1.,1.,0.) or (1., 1., 0., 1.)) * HTML-like string (e.g: “#ffff00) * a color name or shortcut (e.g: “y” or “yellow”)
vmin (int, optional): The minimal value for the colormap. Values lower than vmin will be bound directly to colors[0].. Defaults to 0.
vmax (float, optional): The maximal value for the colormap. Values higher than vmax will be bound directly to colors[-1]. Defaults to 1.0.
index (list, optional):The values corresponding to each color. It has to be sorted, and have the same length as colors. If None, a regular grid between vmin and vmax is created.. Defaults to None.
caption (str, optional): The caption for the colormap. Defaults to "".
categorical (bool, optional): Whether or not to create a categorical colormap. Defaults to False.
step (int, optional): The step to split the LinearColormap into a StepColormap. Defaults to None.
"""
from box import Box
from branca.colormap import LinearColormap
if isinstance(colors, Box):
try:
colors = list(colors["default"])
except Exception as e:
print("The provided color list is invalid.")
raise Exception(e)
if all(len(color) == 6 for color in colors):
colors = ["#" + color for color in colors]
colormap = LinearColormap(
colors=colors, index=index, vmin=vmin, vmax=vmax, caption=caption
)
if categorical:
if step is not None:
colormap = colormap.to_step(step)
elif index is not None:
colormap = colormap.to_step(len(index) - 1)
else:
colormap = colormap.to_step(3)
self.add_child(colormap)
add_colormap(self, width=4.0, height=0.3, vmin=0, vmax=1.0, palette=None, vis_params=None, cmap='gray', discrete=False, label=None, label_size=12, label_weight='normal', tick_size=10, bg_color='white', orientation='horizontal', dpi='figure', transparent=False, position=(70, 5), **kwargs)
¶
Add a colorbar to the map. Under the hood, it uses matplotlib to generate the colorbar, save it as a png file, and add it to the map using m.add_image().
Parameters:
Name | Type | Description | Default |
---|---|---|---|
width |
float |
Width of the colorbar in inches. Default is 4.0. |
4.0 |
height |
float |
Height of the colorbar in inches. Default is 0.3. |
0.3 |
vmin |
float |
Minimum value of the colorbar. Default is 0. |
0 |
vmax |
float |
Maximum value of the colorbar. Default is 1.0. |
1.0 |
palette |
list |
List of colors to use for the colorbar. It can also be a cmap name, such as ndvi, ndwi, dem, coolwarm. Default is None. |
None |
vis_params |
dict |
Visualization parameters as a dictionary. See https://developers.google.com/earth-engine/guides/image_visualization for options. |
None |
cmap |
str |
Matplotlib colormap. Defaults to "gray". See https://matplotlib.org/3.3.4/tutorials/colors/colormaps.html#sphx-glr-tutorials-colors-colormaps-py for options. |
'gray' |
discrete |
bool |
Whether to create a discrete colorbar. Defaults to False. |
False |
label |
str |
Label for the colorbar. Defaults to None. |
None |
label_size |
int |
Font size for the colorbar label. Defaults to 12. |
12 |
label_weight |
str |
Font weight for the colorbar label, can be "normal", "bold", etc. Defaults to "normal". |
'normal' |
tick_size |
int |
Font size for the colorbar tick labels. Defaults to 10. |
10 |
bg_color |
str |
Background color for the colorbar. Defaults to "white". |
'white' |
orientation |
str |
Orientation of the colorbar, such as "vertical" and "horizontal". Defaults to "horizontal". |
'horizontal' |
dpi |
float | str |
The resolution in dots per inch. If 'figure', use the figure's dpi value. Defaults to "figure". |
'figure' |
transparent |
bool |
Whether to make the background transparent. Defaults to False. |
False |
position |
tuple |
The position of the colormap in the format of (x, y), the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0). |
(70, 5) |
**kwargs |
Other keyword arguments to pass to matplotlib.pyplot.savefig(). |
{} |
Returns:
Type | Description |
---|---|
str |
Path to the output image. |
Source code in leafmap/foliumap.py
def add_colormap(
self,
width: Optional[float] = 4.0,
height: Optional[float] = 0.3,
vmin: Optional[float] = 0,
vmax: Optional[float] = 1.0,
palette: Optional[List] = None,
vis_params: Optional[dict] = None,
cmap: Optional[str] = "gray",
discrete: Optional[bool] = False,
label: Optional[str] = None,
label_size: Optional[int] = 12,
label_weight: Optional[str] = "normal",
tick_size: Optional[int] = 10,
bg_color: Optional[str] = "white",
orientation: Optional[str] = "horizontal",
dpi: Optional[Union[str, float]] = "figure",
transparent: Optional[bool] = False,
position: Optional[Tuple] = (70, 5),
**kwargs,
):
"""Add a colorbar to the map. Under the hood, it uses matplotlib to generate the colorbar, save it as a png file, and add it to the map using m.add_image().
Args:
width (float): Width of the colorbar in inches. Default is 4.0.
height (float): Height of the colorbar in inches. Default is 0.3.
vmin (float): Minimum value of the colorbar. Default is 0.
vmax (float): Maximum value of the colorbar. Default is 1.0.
palette (list): List of colors to use for the colorbar. It can also be a cmap name, such as ndvi, ndwi, dem, coolwarm. Default is None.
vis_params (dict): Visualization parameters as a dictionary. See https://developers.google.com/earth-engine/guides/image_visualization for options.
cmap (str, optional): Matplotlib colormap. Defaults to "gray". See https://matplotlib.org/3.3.4/tutorials/colors/colormaps.html#sphx-glr-tutorials-colors-colormaps-py for options.
discrete (bool, optional): Whether to create a discrete colorbar. Defaults to False.
label (str, optional): Label for the colorbar. Defaults to None.
label_size (int, optional): Font size for the colorbar label. Defaults to 12.
label_weight (str, optional): Font weight for the colorbar label, can be "normal", "bold", etc. Defaults to "normal".
tick_size (int, optional): Font size for the colorbar tick labels. Defaults to 10.
bg_color (str, optional): Background color for the colorbar. Defaults to "white".
orientation (str, optional): Orientation of the colorbar, such as "vertical" and "horizontal". Defaults to "horizontal".
dpi (float | str, optional): The resolution in dots per inch. If 'figure', use the figure's dpi value. Defaults to "figure".
transparent (bool, optional): Whether to make the background transparent. Defaults to False.
position (tuple, optional): The position of the colormap in the format of (x, y),
the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0).
**kwargs: Other keyword arguments to pass to matplotlib.pyplot.savefig().
Returns:
str: Path to the output image.
"""
colorbar = common.save_colorbar(
None,
width,
height,
vmin,
vmax,
palette,
vis_params,
cmap,
discrete,
label,
label_size,
label_weight,
tick_size,
bg_color,
orientation,
dpi,
transparent,
show_colorbar=False,
**kwargs,
)
self.add_image(colorbar, position=position)
add_data(self, data, column, cmap=None, colors=None, labels=None, scheme='Quantiles', k=5, add_legend=True, legend_title=None, legend_position='bottomright', legend_kwds=None, classification_kwds=None, style_function=None, highlight_function=None, layer_name='Untitled', info_mode='on_hover', encoding='utf-8', **kwargs)
¶
Add vector data to the map with a variety of classification schemes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str | pd.DataFrame | gpd.GeoDataFrame |
The data to classify. It can be a filepath to a vector dataset, a pandas dataframe, or a geopandas geodataframe. |
required |
column |
str |
The column to classify. |
required |
cmap |
str |
The name of a colormap recognized by matplotlib. Defaults to None. |
None |
colors |
list |
A list of colors to use for the classification. Defaults to None. |
None |
labels |
list |
A list of labels to use for the legend. Defaults to None. |
None |
scheme |
str |
Name of a choropleth classification scheme (requires mapclassify). Name of a choropleth classification scheme (requires mapclassify). A mapclassify.MapClassifier object will be used under the hood. Supported are all schemes provided by mapclassify (e.g. 'BoxPlot', 'EqualInterval', 'FisherJenks', 'FisherJenksSampled', 'HeadTailBreaks', 'JenksCaspall', 'JenksCaspallForced', 'JenksCaspallSampled', 'MaxP', 'MaximumBreaks', 'NaturalBreaks', 'Quantiles', 'Percentiles', 'StdMean', 'UserDefined'). Arguments can be passed in classification_kwds. |
'Quantiles' |
k |
int |
Number of classes (ignored if scheme is None or if column is categorical). Default to 5. |
5 |
add_legend |
bool |
Whether to add a legend to the map. Defaults to True. |
True |
legend_title |
str |
The title of the legend. Defaults to None. |
None |
legend_position |
str |
The position of the legend. Can be 'topleft', 'topright', 'bottomleft', or 'bottomright'. Defaults to 'bottomright'. |
'bottomright' |
legend_kwds |
dict |
Keyword arguments to pass to :func: |
None |
classification_kwds |
dict |
Keyword arguments to pass to mapclassify. Defaults to None. |
None |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style_function |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. style_callback is a function that takes the feature as argument and should return a dictionary of the following form: style_callback = lambda feat: {"fillColor": feat["properties"]["color"]} style is a dictionary of the following form: style = { "stroke": False, "color": "#ff0000", "weight": 1, "opacity": 1, "fill": True, "fillColor": "#ffffff", "fillOpacity": 1.0, "dashArray": "9" "clickable": True, } |
None |
hightlight_function |
function |
Highlighting function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. highlight_function is a function that takes the feature as argument and should return a dictionary of the following form: highlight_function = lambda feat: {"fillColor": feat["properties"]["color"]} |
required |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
encoding |
str |
The encoding of the GeoJSON file. Defaults to "utf-8". |
'utf-8' |
**kwargs |
Additional keyword arguments to pass to the GeoJSON class, such as fields, which can be a list of column names to be included in the popup. |
{} |
Source code in leafmap/foliumap.py
def add_data(
self,
data: Union[str, pd.DataFrame],
column: str,
cmap: Optional[str] = None,
colors: Optional[List] = None,
labels: Optional[List] = None,
scheme: Optional[str] = "Quantiles",
k: Optional[int] = 5,
add_legend: Optional[bool] = True,
legend_title: Optional[str] = None,
legend_position: Optional[str] = "bottomright",
legend_kwds: Optional[dict] = None,
classification_kwds: Optional[dict] = None,
style_function: Optional[Callable] = None,
highlight_function: Optional[Callable] = None,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
encoding: Optional[str] = "utf-8",
**kwargs,
):
"""Add vector data to the map with a variety of classification schemes.
Args:
data (str | pd.DataFrame | gpd.GeoDataFrame): The data to classify. It can be a filepath to a vector dataset, a pandas dataframe, or a geopandas geodataframe.
column (str): The column to classify.
cmap (str, optional): The name of a colormap recognized by matplotlib. Defaults to None.
colors (list, optional): A list of colors to use for the classification. Defaults to None.
labels (list, optional): A list of labels to use for the legend. Defaults to None.
scheme (str, optional): Name of a choropleth classification scheme (requires mapclassify).
Name of a choropleth classification scheme (requires mapclassify).
A mapclassify.MapClassifier object will be used
under the hood. Supported are all schemes provided by mapclassify (e.g.
'BoxPlot', 'EqualInterval', 'FisherJenks', 'FisherJenksSampled',
'HeadTailBreaks', 'JenksCaspall', 'JenksCaspallForced',
'JenksCaspallSampled', 'MaxP', 'MaximumBreaks',
'NaturalBreaks', 'Quantiles', 'Percentiles', 'StdMean',
'UserDefined'). Arguments can be passed in classification_kwds.
k (int, optional): Number of classes (ignored if scheme is None or if column is categorical). Default to 5.
add_legend (bool, optional): Whether to add a legend to the map. Defaults to True.
legend_title (str, optional): The title of the legend. Defaults to None.
legend_position (str, optional): The position of the legend. Can be 'topleft', 'topright', 'bottomleft', or 'bottomright'. Defaults to 'bottomright'.
legend_kwds (dict, optional): Keyword arguments to pass to :func:`matplotlib.pyplot.legend` or `matplotlib.pyplot.colorbar`. Defaults to None.
Keyword arguments to pass to :func:`matplotlib.pyplot.legend` or
Additional accepted keywords when `scheme` is specified:
fmt : string
A formatting specification for the bin edges of the classes in the
legend. For example, to have no decimals: ``{"fmt": "{:.0f}"}``.
labels : list-like
A list of legend labels to override the auto-generated labblels.
Needs to have the same number of elements as the number of
classes (`k`).
interval : boolean (default False)
An option to control brackets from mapclassify legend.
If True, open/closed interval brackets are shown in the legend.
classification_kwds (dict, optional): Keyword arguments to pass to mapclassify. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style_function (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
style_callback is a function that takes the feature as argument and should return a dictionary of the following form:
style_callback = lambda feat: {"fillColor": feat["properties"]["color"]}
style is a dictionary of the following form:
style = {
"stroke": False,
"color": "#ff0000",
"weight": 1,
"opacity": 1,
"fill": True,
"fillColor": "#ffffff",
"fillOpacity": 1.0,
"dashArray": "9"
"clickable": True,
}
hightlight_function (function, optional): Highlighting function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
highlight_function is a function that takes the feature as argument and should return a dictionary of the following form:
highlight_function = lambda feat: {"fillColor": feat["properties"]["color"]}
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
encoding (str, optional): The encoding of the GeoJSON file. Defaults to "utf-8".
**kwargs: Additional keyword arguments to pass to the GeoJSON class, such as fields, which can be a list of column names to be included in the popup.
"""
import warnings
gdf, legend_dict = common.classify(
data=data,
column=column,
cmap=cmap,
colors=colors,
labels=labels,
scheme=scheme,
k=k,
legend_kwds=legend_kwds,
classification_kwds=classification_kwds,
)
if legend_title is None:
legend_title = column
if "style" in kwargs:
warnings.warn(
"The style arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("style")
if "hover_style" in kwargs:
warnings.warn(
"The hover_style arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("hover_style")
if "style_callback" in kwargs:
warnings.warn(
"The style_callback arguments is for ipyleaflet only. ",
UserWarning,
)
kwargs.pop("style_callback")
if style_function is None:
style_function = lambda feat: {
# "stroke": False,
# "color": "#ff0000",
"weight": 1,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 1.0,
# "dashArray": "9"
# "clickable": True,
"fillColor": feat["properties"]["color"],
}
if highlight_function is None:
highlight_function = lambda feat: {
"weight": 2,
"fillOpacity": 0.5,
}
self.add_gdf(
gdf,
layer_name=layer_name,
style_function=style_function,
highlight_function=highlight_function,
info_mode=info_mode,
encoding=encoding,
**kwargs,
)
if add_legend:
self.add_legend(title=legend_title, legend_dict=legend_dict)
add_ee_layer(self, asset_id, name=None, attribution='Google Earth Engine', shown=True, opacity=1.0, **kwargs)
¶
Adds a Google Earth Engine tile layer to the map based on the tile layer URL from https://github.com/opengeos/ee-tile-layers/blob/main/datasets.tsv.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
asset_id |
str |
The ID of the Earth Engine asset. |
required |
name |
str |
The name of the tile layer. If not provided, the asset ID will be used. Default is None. |
None |
attribution |
str |
The attribution text to be displayed. Default is "Google Earth Engine". |
'Google Earth Engine' |
shown |
bool |
Whether the tile layer should be shown on the map. Default is True. |
True |
opacity |
float |
The opacity of the tile layer. Default is 1.0. |
1.0 |
**kwargs |
Additional keyword arguments to be passed to the underlying |
{} |
Returns:
Type | Description |
---|---|
None |
None |
Source code in leafmap/foliumap.py
def add_ee_layer(
self,
asset_id: str,
name: str = None,
attribution: str = "Google Earth Engine",
shown: bool = True,
opacity: float = 1.0,
**kwargs,
) -> None:
"""
Adds a Google Earth Engine tile layer to the map based on the tile layer URL from
https://github.com/opengeos/ee-tile-layers/blob/main/datasets.tsv.
Args:
asset_id (str): The ID of the Earth Engine asset.
name (str, optional): The name of the tile layer. If not provided, the asset ID will be used. Default is None.
attribution (str, optional): The attribution text to be displayed. Default is "Google Earth Engine".
shown (bool, optional): Whether the tile layer should be shown on the map. Default is True.
opacity (float, optional): The opacity of the tile layer. Default is 1.0.
**kwargs: Additional keyword arguments to be passed to the underlying `add_tile_layer` method.
Returns:
None
"""
import pandas as pd
df = pd.read_csv(
"https://raw.githubusercontent.com/opengeos/ee-tile-layers/main/datasets.tsv",
sep="\t",
)
asset_id = asset_id.strip()
if name is None:
name = asset_id
if asset_id in df["id"].values:
url = df.loc[df["id"] == asset_id, "url"].values[0]
self.add_tile_layer(
url,
name,
attribution=attribution,
shown=shown,
opacity=opacity,
**kwargs,
)
else:
print(f"The provided EE tile layer {asset_id} does not exist.")
add_gdf(self, gdf, layer_name='Untitled', zoom_to_layer=True, info_mode='on_hover', **kwargs)
¶
Adds a GeoPandas GeoDataFrameto the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gdf |
GeoDataFrame |
A GeoPandas GeoDataFrame. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
zoom_to_layer |
bool |
Whether to zoom to the layer. |
True |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_gdf(
self,
gdf,
layer_name: Optional[str] = "Untitled",
zoom_to_layer: Optional[bool] = True,
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a GeoPandas GeoDataFrameto the map.
Args:
gdf (GeoDataFrame): A GeoPandas GeoDataFrame.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
zoom_to_layer (bool, optional): Whether to zoom to the layer.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
for col in gdf.columns:
if gdf[col].dtype in ["datetime64[ns]", "datetime64[ns, UTC]"]:
gdf[col] = gdf[col].astype(str)
self.add_geojson(
gdf,
layer_name=layer_name,
info_mode=info_mode,
zoom_to_layer=zoom_to_layer,
**kwargs,
)
add_gdf_from_postgis(self, sql, con, layer_name='Untitled', zoom_to_layer=True, info_mode='on_hover', **kwargs)
¶
Adds a GeoPandas GeoDataFrameto the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sql |
str |
SQL query to execute in selecting entries from database, or name of the table to read from the database. |
required |
con |
sqlalchemy.engine.Engine |
Active connection to the database to query. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
zoom_to_layer |
bool |
Whether to zoom to the layer. |
True |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_gdf_from_postgis(
self,
sql: str,
con,
layer_name: Optional[str] = "Untitled",
zoom_to_layer: Optional[bool] = True,
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a GeoPandas GeoDataFrameto the map.
Args:
sql (str): SQL query to execute in selecting entries from database, or name of the table to read from the database.
con (sqlalchemy.engine.Engine): Active connection to the database to query.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
zoom_to_layer (bool, optional): Whether to zoom to the layer.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
if "fill_colors" in kwargs:
kwargs.pop("fill_colors")
gdf = common.read_postgis(sql, con, **kwargs)
data = common.gdf_to_geojson(gdf, epsg="4326")
self.add_geojson(data, layer_name=layer_name, info_mode=info_mode, **kwargs)
if zoom_to_layer:
import numpy as np
bounds = gdf.to_crs(epsg="4326").bounds
west = np.min(bounds["minx"])
south = np.min(bounds["miny"])
east = np.max(bounds["maxx"])
north = np.max(bounds["maxy"])
self.fit_bounds([[south, east], [north, west]])
add_geojson(self, in_geojson, layer_name='Untitled', encoding='utf-8', info_mode='on_hover', zoom_to_layer=True, **kwargs)
¶
Adds a GeoJSON file to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_geojson |
str |
The input file path to the GeoJSON. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
encoding |
str |
The encoding of the GeoJSON file. Defaults to "utf-8". |
'utf-8' |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
zoom_to_layer |
bool |
Whether to zoom to the layer. Defaults to True. |
True |
Exceptions:
Type | Description |
---|---|
FileNotFoundError |
The provided GeoJSON file could not be found. |
Source code in leafmap/foliumap.py
def add_geojson(
self,
in_geojson: str,
layer_name: Optional[str] = "Untitled",
encoding: Optional[str] = "utf-8",
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds a GeoJSON file to the map.
Args:
in_geojson (str): The input file path to the GeoJSON.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
encoding (str, optional): The encoding of the GeoJSON file. Defaults to "utf-8".
info_mode (str, optional): Displays the attributes by either on_hover or on_click.
Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
Raises:
FileNotFoundError: The provided GeoJSON file could not be found.
"""
import shutil
import json
import random
import geopandas as gpd
gdf = None
try:
if isinstance(in_geojson, str):
if in_geojson.startswith("http"):
if common.is_jupyterlite():
import pyodide # pylint: disable=E0401
output = os.path.basename(in_geojson)
output = os.path.abspath(output)
obj = pyodide.http.open_url(in_geojson)
with open(output, "w") as fd:
shutil.copyfileobj(obj, fd)
with open(output, "r") as fd:
data = json.load(fd)
else:
gdf = gpd.read_file(in_geojson, encoding=encoding)
else:
gdf = gpd.read_file(in_geojson, encoding=encoding)
elif isinstance(in_geojson, dict):
gdf = gpd.GeoDataFrame.from_features(in_geojson)
elif isinstance(in_geojson, gpd.GeoDataFrame):
gdf = in_geojson
else:
raise TypeError("The input geojson must be a type of str or dict.")
except Exception as e:
raise Exception(e)
if gdf.crs is None:
print(
f"Warning: The dataset does not have a CRS defined. Assuming EPSG:4326."
)
gdf.crs = "EPSG:4326"
elif gdf.crs != "EPSG:4326":
gdf = gdf.to_crs("EPSG:4326")
data = gdf.__geo_interface__
# interchangeable parameters between ipyleaflet and folium.
if "style_callback" in kwargs:
kwargs["style_function"] = kwargs.pop("style_callback")
style_dict = {}
if "style_function" not in kwargs and ("style" not in gdf.columns):
if "style" in kwargs:
style_dict = kwargs["style"]
if isinstance(kwargs["style"], dict) and len(kwargs["style"]) > 0:
kwargs["style_function"] = lambda x: style_dict
kwargs.pop("style")
elif "fill_colors" not in kwargs:
style_dict = {
# "stroke": True,
"color": "#3388ff",
"weight": 2,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 0,
# "dashArray": "9"
# "clickable": True,
}
kwargs["style_function"] = lambda x: style_dict
if "hover_style" in kwargs:
kwargs.pop("hover_style")
if "fill_colors" in kwargs:
fill_colors = kwargs["fill_colors"]
def random_color(feature):
style_dict["fillColor"] = random.choice(fill_colors)
return style_dict
kwargs["style_function"] = random_color
kwargs.pop("fill_colors")
if "weight" not in style_dict:
style_dict["weight"] = 2
if "highlight_function" not in kwargs and ("style" not in gdf.columns):
kwargs["highlight_function"] = lambda feat: {
"weight": style_dict["weight"] + 2,
"fillOpacity": 0,
}
tooltip = None
popup = None
if info_mode is not None:
if "fields" in kwargs:
props = kwargs["fields"]
kwargs.pop("fields")
else:
props = list(data["features"][0]["properties"].keys())
if "style" in gdf.columns:
props.remove("style")
if info_mode == "on_hover":
tooltip = folium.GeoJsonTooltip(fields=props)
elif info_mode == "on_click":
popup = folium.GeoJsonPopup(fields=props)
geojson = folium.GeoJson(
data=data, name=layer_name, tooltip=tooltip, popup=popup, **kwargs
)
geojson.add_to(self)
if zoom_to_layer:
bounds = bounds = gdf.total_bounds
self.zoom_to_bounds(bounds)
add_heatmap(self, data, latitude='latitude', longitude='longitude', value='value', name='Heat map', radius=25, **kwargs)
¶
Adds a heat map to the map. Reference: https://stackoverflow.com/a/54756617
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str | list | pd.DataFrame |
File path or HTTP URL to the input file or a list of data points in the format of [[x1, y1, z1], [x2, y2, z2]]. For example, https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/world_cities.csv |
required |
latitude |
str |
The column name of latitude. Defaults to "latitude". |
'latitude' |
longitude |
str |
The column name of longitude. Defaults to "longitude". |
'longitude' |
value |
str |
The column name of values. Defaults to "value". |
'value' |
name |
str |
Layer name to use. Defaults to "Heat map". |
'Heat map' |
radius |
int |
Radius of each “point” of the heatmap. Defaults to 25. |
25 |
Exceptions:
Type | Description |
---|---|
ValueError |
If data is not a list. |
Source code in leafmap/foliumap.py
def add_heatmap(
self,
data: Union[str, List[List[float]], pd.DataFrame],
latitude: Optional[str] = "latitude",
longitude: Optional[str] = "longitude",
value: Optional[str] = "value",
name: Optional[str] = "Heat map",
radius: Optional[int] = 25,
**kwargs,
):
"""Adds a heat map to the map. Reference: https://stackoverflow.com/a/54756617
Args:
data (str | list | pd.DataFrame): File path or HTTP URL to the input file or a list of data points in the format of [[x1, y1, z1], [x2, y2, z2]]. For example, https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/world_cities.csv
latitude (str, optional): The column name of latitude. Defaults to "latitude".
longitude (str, optional): The column name of longitude. Defaults to "longitude".
value (str, optional): The column name of values. Defaults to "value".
name (str, optional): Layer name to use. Defaults to "Heat map".
radius (int, optional): Radius of each “point” of the heatmap. Defaults to 25.
Raises:
ValueError: If data is not a list.
"""
import pandas as pd
try:
if isinstance(data, str):
df = pd.read_csv(data)
data = df[[latitude, longitude, value]].values.tolist()
elif isinstance(data, pd.DataFrame):
data = data[[latitude, longitude, value]].values.tolist()
elif isinstance(data, list):
pass
else:
raise ValueError("data must be a list, a DataFrame, or a file path.")
plugins.HeatMap(data, name=name, radius=radius, **kwargs).add_to(
folium.FeatureGroup(name=name).add_to(self)
)
except Exception as e:
raise Exception(e)
add_html(self, html, position='bottomright', **kwargs)
¶
Add HTML to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
html |
str |
The HTML to add. |
required |
position |
str |
The position of the widget. Defaults to "bottomright". |
'bottomright' |
Source code in leafmap/foliumap.py
def add_html(self, html: str, position: Optional[str] = "bottomright", **kwargs):
"""Add HTML to the map.
Args:
html (str): The HTML to add.
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
self.add_widget(html, position=position, **kwargs)
add_image(self, image, position=(0, 0), **kwargs)
¶
Add an image to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image |
str | ipywidgets.Image |
The image to add. |
required |
position |
tuple |
The position of the image in the format of (x, y), the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0). |
(0, 0) |
Source code in leafmap/foliumap.py
def add_image(
self,
image: str,
position: Optional[Tuple] = (0, 0),
**kwargs,
):
"""Add an image to the map.
Args:
image (str | ipywidgets.Image): The image to add.
position (tuple, optional): The position of the image in the format of (x, y),
the percentage ranging from 0 to 100, starting from the lower-left corner. Defaults to (0, 0).
"""
import base64
if isinstance(image, str):
if image.startswith("http"):
html = f'<img src="{image}">'
if isinstance(position, tuple):
position = "bottomright"
self.add_html(html, position=position, **kwargs)
elif os.path.exists(image):
if position == "bottomleft":
position = (5, 5)
elif position == "bottomright":
position = (80, 5)
elif position == "topleft":
position = (5, 60)
elif position == "topright":
position = (80, 60)
with open(image, "rb") as lf:
# open in binary mode, read bytes, encode, decode obtained bytes as utf-8 string
b64_content = base64.b64encode(lf.read()).decode("utf-8")
widget = plugins.FloatImage(
"data:image/png;base64,{}".format(b64_content),
bottom=position[1],
left=position[0],
)
widget.add_to(self)
else:
raise Exception("Invalid image")
add_kml(self, in_kml, layer_name='Untitled', info_mode='on_hover', **kwargs)
¶
Adds a KML file to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_kml |
str |
The input file path to the KML. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Exceptions:
Type | Description |
---|---|
FileNotFoundError |
The provided KML file could not be found. |
Source code in leafmap/foliumap.py
def add_kml(
self,
in_kml: str,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a KML file to the map.
Args:
in_kml (str): The input file path to the KML.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
Raises:
FileNotFoundError: The provided KML file could not be found.
"""
if in_kml.startswith("http") and in_kml.endswith(".kml"):
out_dir = os.path.abspath("./cache")
if not os.path.exists(out_dir):
os.makedirs(out_dir)
in_kml = common.download_file(in_kml)
if not os.path.exists(in_kml):
raise FileNotFoundError("The downloaded kml file could not be found.")
else:
in_kml = os.path.abspath(in_kml)
if not os.path.exists(in_kml):
raise FileNotFoundError("The provided KML could not be found.")
self.add_vector(in_kml, layer_name, info_mode=info_mode, **kwargs)
add_labels(self, data, column, font_size='12pt', font_color='black', font_family='arial', font_weight='normal', x='longitude', y='latitude', draggable=True, layer_name='Labels', **kwargs)
¶
Adds a label layer to the map. Reference: https://python-visualization.github.io/folium/modules.html#folium.features.DivIcon
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
pd.DataFrame | gpd.GeoDataFrame | str |
The input data to label. |
required |
column |
str |
The column name of the data to label. |
required |
font_size |
str |
The font size of the labels. Defaults to "12pt". |
'12pt' |
font_color |
str |
The font color of the labels. Defaults to "black". |
'black' |
font_family |
str |
The font family of the labels. Defaults to "arial". |
'arial' |
font_weight |
str |
The font weight of the labels, can be normal, bold. Defaults to "normal". |
'normal' |
x |
str |
The column name of the longitude. Defaults to "longitude". |
'longitude' |
y |
str |
The column name of the latitude. Defaults to "latitude". |
'latitude' |
draggable |
bool |
Whether the labels are draggable. Defaults to True. |
True |
layer_name |
str |
The name of the layer. Defaults to "Labels". |
'Labels' |
Source code in leafmap/foliumap.py
def add_labels(
self,
data: Union[pd.DataFrame, str],
column: str,
font_size: Optional[str] = "12pt",
font_color: Optional[str] = "black",
font_family: Optional[str] = "arial",
font_weight: Optional[str] = "normal",
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
draggable: Optional[bool] = True,
layer_name: Optional[str] = "Labels",
**kwargs,
):
"""Adds a label layer to the map. Reference: https://python-visualization.github.io/folium/modules.html#folium.features.DivIcon
Args:
data (pd.DataFrame | gpd.GeoDataFrame | str): The input data to label.
column (str): The column name of the data to label.
font_size (str, optional): The font size of the labels. Defaults to "12pt".
font_color (str, optional): The font color of the labels. Defaults to "black".
font_family (str, optional): The font family of the labels. Defaults to "arial".
font_weight (str, optional): The font weight of the labels, can be normal, bold. Defaults to "normal".
x (str, optional): The column name of the longitude. Defaults to "longitude".
y (str, optional): The column name of the latitude. Defaults to "latitude".
draggable (bool, optional): Whether the labels are draggable. Defaults to True.
layer_name (str, optional): The name of the layer. Defaults to "Labels".
"""
import warnings
import pandas as pd
from folium.features import DivIcon
warnings.filterwarnings("ignore")
if isinstance(data, pd.DataFrame):
df = data
if "geometry" in data.columns or ("geom" in data.columns):
df[x] = df.centroid.x
df[y] = df.centroid.y
elif isinstance(data, str):
ext = os.path.splitext(data)[1]
if ext == ".csv":
df = pd.read_csv(data)
elif ext in [".geojson", ".json", ".shp", ".gpkg"]:
try:
import geopandas as gpd
df = gpd.read_file(data)
df[x] = df.centroid.x
df[y] = df.centroid.y
except ImportError:
print("geopandas is required to read geojson.")
return
else:
raise ValueError("data must be a DataFrame or an ee.FeatureCollection.")
if column not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
if x not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
if y not in df.columns:
raise ValueError(f"column must be one of {', '.join(df.columns)}.")
try:
size = int(font_size.replace("pt", ""))
except:
raise ValueError("font_size must be something like '10pt'")
layer_group = folium.FeatureGroup(name=layer_name)
for index in df.index:
html = f'<div style="font-size: {font_size};color:{font_color};font-family:{font_family};font-weight: {font_weight}">{df[column][index]}</div>'
folium.Marker(
location=[df[y][index], df[x][index]],
icon=DivIcon(
icon_size=(1, 1),
icon_anchor=(size, size),
html=html,
**kwargs,
),
draggable=draggable,
).add_to(layer_group)
layer_group.add_to(self)
add_layer(self, layer)
¶
Adds a layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
layer |
TileLayer |
A TileLayer instance. |
required |
Source code in leafmap/foliumap.py
def add_layer(self, layer):
"""Adds a layer to the map.
Args:
layer (TileLayer): A TileLayer instance.
"""
layer.add_to(self)
add_layer_control(self)
¶
Adds layer control to the map.
Source code in leafmap/foliumap.py
def add_layer_control(self):
"""Adds layer control to the map."""
layer_ctrl = False
for item in self.to_dict()["children"]:
if item.startswith("layer_control"):
layer_ctrl = True
break
if not layer_ctrl:
folium.LayerControl().add_to(self)
add_legend(self, title='Legend', labels=None, colors=None, legend_dict=None, builtin_legend=None, opacity=1.0, position='bottomright', draggable=True, style={}, shape_type='rectangle')
¶
Adds a customized legend to the map. Reference: https://bit.ly/3oV6vnH.
If you want to add multiple legends to the map, you need to set the draggable
argument to False.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
title |
str |
Title of the legend. Defaults to 'Legend'. Defaults to "Legend". |
'Legend' |
colors |
list |
A list of legend colors. Defaults to None. |
None |
labels |
list |
A list of legend labels. Defaults to None. |
None |
legend_dict |
dict |
A dictionary containing legend items as keys and color as values. If provided, legend_keys and legend_colors will be ignored. Defaults to None. |
None |
builtin_legend |
str |
Name of the builtin legend to add to the map. Defaults to None. |
None |
opacity |
float |
The opacity of the legend. Defaults to 1.0. |
1.0 |
position |
str |
The position of the legend, can be one of the following: "topleft", "topright", "bottomleft", "bottomright". Defaults to "bottomright". Note that position is only valid when draggable is False. |
'bottomright' |
draggable |
bool |
If True, the legend can be dragged to a new position. Defaults to True. |
True |
style |
Optional[Dict] |
Additional keyword arguments to style the legend, such as position, bottom, right, z-index, border, background-color, border-radius, padding, font-size, etc. The default style is: style = { 'position': 'fixed', 'z-index': '9999', 'border': '2px solid grey', 'background-color': 'rgba(255, 255, 255, 0.8)', 'border-radius': '5px', 'padding': '10px', 'font-size': '14px', 'bottom': '20px', 'right': '5px' } |
{} |
shape_type |
str |
The shape type of the legend item. It can be either "rectangle", "line" or "circle". Defaults to "rectangle". |
'rectangle' |
Source code in leafmap/foliumap.py
def add_legend(
self,
title: Optional[str] = "Legend",
labels: Optional[List] = None,
colors: Optional[List] = None,
legend_dict: Optional[Dict] = None,
builtin_legend: Optional[str] = None,
opacity: Optional[float] = 1.0,
position: Optional[str] = "bottomright",
draggable: Optional[bool] = True,
style: Optional[Dict] = {},
shape_type: Optional[str] = "rectangle",
):
"""Adds a customized legend to the map. Reference: https://bit.ly/3oV6vnH.
If you want to add multiple legends to the map, you need to set the `draggable` argument to False.
Args:
title (str, optional): Title of the legend. Defaults to 'Legend'. Defaults to "Legend".
colors (list, optional): A list of legend colors. Defaults to None.
labels (list, optional): A list of legend labels. Defaults to None.
legend_dict (dict, optional): A dictionary containing legend items as keys and color as values.
If provided, legend_keys and legend_colors will be ignored. Defaults to None.
builtin_legend (str, optional): Name of the builtin legend to add to the map. Defaults to None.
opacity (float, optional): The opacity of the legend. Defaults to 1.0.
position (str, optional): The position of the legend, can be one of the following:
"topleft", "topright", "bottomleft", "bottomright". Defaults to "bottomright".
Note that position is only valid when draggable is False.
draggable (bool, optional): If True, the legend can be dragged to a new position. Defaults to True.
style: Additional keyword arguments to style the legend, such as position, bottom, right, z-index,
border, background-color, border-radius, padding, font-size, etc. The default style is:
style = {
'position': 'fixed',
'z-index': '9999',
'border': '2px solid grey',
'background-color': 'rgba(255, 255, 255, 0.8)',
'border-radius': '5px',
'padding': '10px',
'font-size': '14px',
'bottom': '20px',
'right': '5px'
}
shape_type (str, optional): The shape type of the legend item. It can be
either "rectangle", "line" or "circle". Defaults to "rectangle".
"""
content = common.create_legend(
title,
labels,
colors,
legend_dict,
builtin_legend,
opacity,
position,
draggable,
style=style,
shape_type=shape_type,
)
if draggable:
from branca.element import Template, MacroElement
content = (
'"""\n{% macro html(this, kwargs) %}\n'
+ content
+ '\n{% endmacro %}"""'
)
macro = MacroElement()
macro._template = Template(content)
self.get_root().add_child(macro)
else:
self.add_html(content, position=position)
add_local_tile(self, source, indexes=None, colormap=None, vmin=None, vmax=None, nodata=None, attribution=None, layer_name='Raster', array_args={}, **kwargs)
¶
Add a local raster dataset to the map.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer) and
if the raster does not render properly, try installing jupyter-server-proxy using pip install jupyter-server-proxy
,
then running the following code before calling this function. For more info, see https://bit.ly/3JbmF93.
1 2 |
|
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source |
str |
The path to the GeoTIFF file or the URL of the Cloud Optimized GeoTIFF. |
required |
indexes |
int |
The band(s) to use. Band indexing starts at 1. Defaults to None. |
None |
colormap |
str |
The name of the colormap from |
None |
vmin |
float |
The minimum value to use when colormapping the colormap when plotting a single band. Defaults to None. |
None |
vmax |
float |
The maximum value to use when colormapping the colormap when plotting a single band. Defaults to None. |
None |
nodata |
float |
The value from the band to use to interpret as not valid data. Defaults to None. |
None |
attribution |
str |
Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None. |
None |
layer_name |
str |
The layer name to use. Defaults to 'Raster'. |
'Raster' |
array_args |
dict |
Additional arguments to pass to |
{} |
Source code in leafmap/foliumap.py
def add_raster(
self,
source: str,
indexes: Optional[int] = None,
colormap: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = "Raster",
array_args: Optional[Dict] = {},
**kwargs,
):
"""Add a local raster dataset to the map.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer) and
if the raster does not render properly, try installing jupyter-server-proxy using `pip install jupyter-server-proxy`,
then running the following code before calling this function. For more info, see https://bit.ly/3JbmF93.
import os
os.environ['LOCALTILESERVER_CLIENT_PREFIX'] = 'proxy/{port}'
Args:
source (str): The path to the GeoTIFF file or the URL of the Cloud Optimized GeoTIFF.
indexes (int, optional): The band(s) to use. Band indexing starts at 1. Defaults to None.
colormap (str, optional): The name of the colormap from `matplotlib` to use when plotting a single band. See https://matplotlib.org/stable/gallery/color/colormap_reference.html. Default is greyscale.
vmin (float, optional): The minimum value to use when colormapping the colormap when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the colormap when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to 'Raster'.
array_args (dict, optional): Additional arguments to pass to `array_to_image`. Defaults to {}.
"""
import numpy as np
import xarray as xr
if isinstance(source, np.ndarray) or isinstance(source, xr.DataArray):
source = common.array_to_image(source, **array_args)
tile_layer, tile_client = common.get_local_tile_layer(
source,
indexes=indexes,
colormap=colormap,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
tile_format="folium",
layer_name=layer_name,
return_client=True,
**kwargs,
)
self.add_layer(tile_layer)
bounds = tile_client.bounds() # [ymin, ymax, xmin, xmax]
bounds = (
bounds[2],
bounds[0],
bounds[3],
bounds[1],
) # [minx, miny, maxx, maxy]
self.zoom_to_bounds(bounds)
common.arc_add_layer(tile_layer.tiles, layer_name, True, 1.0)
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
add_marker(self, location, popup=None, tooltip=None, icon=None, draggable=False, **kwargs)
¶
Adds a marker to the map. More info about marker options at https://python-visualization.github.io/folium/modules.html#folium.map.Marker.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
location |
list | tuple |
The location of the marker in the format of [lat, lng]. |
required |
popup |
str |
The popup text. Defaults to None. |
None |
tooltip |
str |
The tooltip text. Defaults to None. |
None |
icon |
str |
The icon to use. Defaults to None. |
None |
draggable |
bool |
Whether the marker is draggable. Defaults to False. |
False |
Source code in leafmap/foliumap.py
def add_marker(
self,
location: Union[List, Tuple],
popup: Optional[str] = None,
tooltip: Optional[str] = None,
icon: Optional[str] = None,
draggable: Optional[bool] = False,
**kwargs,
):
"""Adds a marker to the map. More info about marker options at https://python-visualization.github.io/folium/modules.html#folium.map.Marker.
Args:
location (list | tuple): The location of the marker in the format of [lat, lng].
popup (str, optional): The popup text. Defaults to None.
tooltip (str, optional): The tooltip text. Defaults to None.
icon (str, optional): The icon to use. Defaults to None.
draggable (bool, optional): Whether the marker is draggable. Defaults to False.
"""
if isinstance(location, list):
location = tuple(location)
if isinstance(location, tuple):
folium.Marker(
location=location,
popup=popup,
tooltip=tooltip,
icon=icon,
draggable=draggable,
**kwargs,
).add_to(self)
else:
raise TypeError("The location must be a list or a tuple.")
add_markers_from_xy(self, data, x='longitude', y='latitude', popup=None, min_width=100, max_width=200, layer_name='Markers', icon=None, icon_shape='circle-dot', border_width=3, border_color='#0000ff', **kwargs)
¶
Adds markers to the map from a csv or Pandas DataFrame containing x, y values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str | pd.DataFrame |
A csv or Pandas DataFrame containing x, y, z values. |
required |
x |
str |
The column name for the x values. Defaults to "longitude". |
'longitude' |
y |
str |
The column name for the y values. Defaults to "latitude". |
'latitude' |
popup |
list |
A list of column names to be used as the popup. Defaults to None. |
None |
min_width |
int |
The minimum width of the popup. Defaults to 100. |
100 |
max_width |
int |
The maximum width of the popup. Defaults to 200. |
200 |
layer_name |
str |
The name of the layer. Defaults to "Marker Cluster". |
'Markers' |
icon |
str |
The Font-Awesome icon name to use to render the marker. Defaults to None. |
None |
icon_shape |
str |
The shape of the marker, such as "retangle-dot", "circle-dot". Defaults to 'circle-dot'. |
'circle-dot' |
border_width |
int |
The width of the border. Defaults to 3. |
3 |
border_color |
str |
The color of the border. Defaults to '#0000ff'. |
'#0000ff' |
kwargs |
dict |
Additional keyword arguments to pass to BeautifyIcon. See https://python-visualization.github.io/folium/plugins.html#folium.plugins.BeautifyIcon. |
{} |
Source code in leafmap/foliumap.py
def add_markers_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
popup: Optional[List[str]] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
layer_name: Optional[str] = "Markers",
icon: Optional[str] = None,
icon_shape: Optional[str] = "circle-dot",
border_width: Optional[int] = 3,
border_color: Optional[str] = "#0000ff",
**kwargs,
):
"""Adds markers to the map from a csv or Pandas DataFrame containing x, y values.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
layer_name (str, optional): The name of the layer. Defaults to "Marker Cluster".
icon (str, optional): The Font-Awesome icon name to use to render the marker. Defaults to None.
icon_shape (str, optional): The shape of the marker, such as "retangle-dot", "circle-dot". Defaults to 'circle-dot'.
border_width (int, optional): The width of the border. Defaults to 3.
border_color (str, optional): The color of the border. Defaults to '#0000ff'.
kwargs (dict, optional): Additional keyword arguments to pass to BeautifyIcon. See
https://python-visualization.github.io/folium/plugins.html#folium.plugins.BeautifyIcon.
"""
import pandas as pd
from folium.plugins import BeautifyIcon
layer_group = folium.FeatureGroup(name=layer_name)
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if popup is None:
popup = col_names
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
for row in df.itertuples():
html = ""
for p in popup:
html = html + "<b>" + p + "</b>" + ": " + str(getattr(row, p)) + "<br>"
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
marker_icon = BeautifyIcon(
icon, icon_shape, border_width, border_color, **kwargs
)
folium.Marker(
location=[getattr(row, y), getattr(row, x)],
popup=popup_html,
icon=marker_icon,
).add_to(layer_group)
layer_group.add_to(self)
add_minimap(self, zoom=5, position='bottomright')
¶
Adds a minimap (overview) to the ipyleaflet map.
Source code in leafmap/foliumap.py
def add_minimap(self, zoom=5, position="bottomright"):
"""Adds a minimap (overview) to the ipyleaflet map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
add_mosaic_layer(self, url, titiler_endpoint=None, name='Mosaic Layer', attribution='.', opacity=1.0, shown=True, **kwargs)
¶
Adds a STAC TileLayer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
HTTP URL to a MosaicJSON. |
required |
titiler_endpoint |
str |
Titiler endpoint, e.g., "https://titiler.xyz". Defaults to None. |
None |
name |
str |
The layer name to use for the layer. Defaults to 'Mosaic Layer'. |
'Mosaic Layer' |
attribution |
str |
The attribution to use. Defaults to ''. |
'.' |
opacity |
float |
The opacity of the layer. Defaults to 1. |
1.0 |
shown |
bool |
A flag indicating whether the layer should be on by default. Defaults to True. |
True |
Source code in leafmap/foliumap.py
def add_mosaic_layer(
self,
url: str,
titiler_endpoint: Optional[str] = None,
name: Optional[str] = "Mosaic Layer",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
**kwargs,
):
"""Adds a STAC TileLayer to the map.
Args:
url (str): HTTP URL to a MosaicJSON.
titiler_endpoint (str, optional): Titiler endpoint, e.g., "https://titiler.xyz". Defaults to None.
name (str, optional): The layer name to use for the layer. Defaults to 'Mosaic Layer'.
attribution (str, optional): The attribution to use. Defaults to ''.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
"""
tile_url = common.mosaic_tile(url, titiler_endpoint, **kwargs)
bounds = common.mosaic_bounds(url, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
add_netcdf(self, filename, variables=None, port='default', palette=None, vmin=None, vmax=None, nodata=None, attribution=None, layer_name='NetCDF layer', shift_lon=True, lat='lat', lon='lon', **kwargs)
¶
Generate an ipyleaflet/folium TileLayer from a netCDF file. If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer), try adding to following two lines to the beginning of the notebook if the raster does not render properly.
1 2 |
|
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename |
str |
File path or HTTP URL to the netCDF file. |
required |
variables |
int |
The variable/band names to extract data from the netCDF file. Defaults to None. If None, all variables will be extracted. |
None |
port |
str |
The port to use for the server. Defaults to "default". |
'default' |
palette |
str |
The name of the color palette from |
None |
vmin |
float |
The minimum value to use when colormapping the palette when plotting a single band. Defaults to None. |
None |
vmax |
float |
The maximum value to use when colormapping the palette when plotting a single band. Defaults to None. |
None |
nodata |
float |
The value from the band to use to interpret as not valid data. Defaults to None. |
None |
attribution |
str |
Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None. |
None |
layer_name |
str |
The layer name to use. Defaults to "netCDF layer". |
'NetCDF layer' |
shift_lon |
bool |
Flag to shift longitude values from [0, 360] to the range [-180, 180]. Defaults to True. |
True |
lat |
str |
Name of the latitude variable. Defaults to 'lat'. |
'lat' |
lon |
str |
Name of the longitude variable. Defaults to 'lon'. |
'lon' |
Source code in leafmap/foliumap.py
def add_netcdf(
self,
filename: str,
variables: Optional[int] = None,
port: str = "default",
palette: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = "NetCDF layer",
shift_lon: Optional[bool] = True,
lat: Optional[str] = "lat",
lon: Optional[str] = "lon",
**kwargs,
):
"""Generate an ipyleaflet/folium TileLayer from a netCDF file.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer),
try adding to following two lines to the beginning of the notebook if the raster does not render properly.
import os
os.environ['LOCALTILESERVER_CLIENT_PREFIX'] = f'{os.environ['JUPYTERHUB_SERVICE_PREFIX'].lstrip('/')}/proxy/{{port}}'
Args:
filename (str): File path or HTTP URL to the netCDF file.
variables (int, optional): The variable/band names to extract data from the netCDF file. Defaults to None. If None, all variables will be extracted.
port (str, optional): The port to use for the server. Defaults to "default".
palette (str, optional): The name of the color palette from `palettable` to use when plotting a single band. See https://jiffyclub.github.io/palettable. Default is greyscale
vmin (float, optional): The minimum value to use when colormapping the palette when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the palette when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to "netCDF layer".
shift_lon (bool, optional): Flag to shift longitude values from [0, 360] to the range [-180, 180]. Defaults to True.
lat (str, optional): Name of the latitude variable. Defaults to 'lat'.
lon (str, optional): Name of the longitude variable. Defaults to 'lon'.
"""
tif, vars = common.netcdf_to_tif(
filename, shift_lon=shift_lon, lat=lat, lon=lon, return_vars=True
)
if variables is None:
if len(vars) >= 3:
band_idx = [1, 2, 3]
else:
band_idx = [1]
else:
if not set(variables).issubset(set(vars)):
raise ValueError(f"The variables must be a subset of {vars}.")
else:
band_idx = [vars.index(v) + 1 for v in variables]
self.add_raster(
tif,
band=band_idx,
palette=palette,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
layer_name=layer_name,
**kwargs,
)
add_nlcd(self, years=[2023], add_legend=True, **kwargs)
¶
Adds National Land Cover Database (NLCD) data to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
years |
list |
A list of years to add. It can be any of 1985-2023. Defaults to [2023]. |
[2023] |
add_legend |
bool |
Whether to add a legend to the map. Defaults to True. |
True |
**kwargs |
Additional keyword arguments to pass to the add_cog_layer method. |
{} |
Returns:
Type | Description |
---|---|
None |
None |
Source code in leafmap/foliumap.py
def add_nlcd(self, years: list = [2023], add_legend: bool = True, **kwargs) -> None:
"""
Adds National Land Cover Database (NLCD) data to the map.
Args:
years (list): A list of years to add. It can be any of 1985-2023. Defaults to [2023].
add_legend (bool): Whether to add a legend to the map. Defaults to True.
**kwargs: Additional keyword arguments to pass to the add_cog_layer method.
Returns:
None
"""
allowed_years = list(range(1985, 2024, 1))
url = (
"https://s3-us-west-2.amazonaws.com/mrlc/Annual_NLCD_LndCov_{}_CU_C1V0.tif"
)
if "colormap" not in kwargs:
kwargs["colormap"] = {
"11": "#466b9f",
"12": "#d1def8",
"21": "#dec5c5",
"22": "#d99282",
"23": "#eb0000",
"24": "#ab0000",
"31": "#b3ac9f",
"41": "#68ab5f",
"42": "#1c5f2c",
"43": "#b5c58f",
"51": "#af963c",
"52": "#ccb879",
"71": "#dfdfc2",
"72": "#d1d182",
"73": "#a3cc51",
"74": "#82ba9e",
"81": "#dcd939",
"82": "#ab6c28",
"90": "#b8d9eb",
"95": "#6c9fb8",
}
if "zoom_to_layer" not in kwargs:
kwargs["zoom_to_layer"] = False
for year in years:
if year not in allowed_years:
raise ValueError(f"Year must be one of {allowed_years}.")
year_url = url.format(year)
self.add_cog_layer(year_url, name=f"NLCD {year}", **kwargs)
if add_legend:
self.add_legend(title="NLCD Land Cover Type", builtin_legend="NLCD")
add_nwi(self, data, col_name='WETLAND_TY', add_legend=True, style_callback=None, layer_name='Wetlands', **kwargs)
¶
Adds National Wetlands Inventory (NWI) data to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, gpd.GeoDataFrame] |
The NWI data to add. It can be a file path or a GeoDataFrame. |
required |
col_name |
str |
The column name to use for styling. Defaults to "WETLAND_TY". |
'WETLAND_TY' |
add_legend |
bool |
Whether to add a legend to the map. Defaults to True. |
True |
style_callback |
Optional[Callable[[dict], dict]] |
A callback function to style the features. Defaults to None. |
None |
layer_name |
str |
The name of the layer to add. Defaults to "Wetlands". |
'Wetlands' |
**kwargs |
Additional keyword arguments to pass to the add_vector or add_gdf method. |
{} |
Returns:
Type | Description |
---|---|
None |
None |
Source code in leafmap/foliumap.py
def add_nwi(
self,
data: Union[str, "gpd.GeoDataFrame"],
col_name: str = "WETLAND_TY",
add_legend: bool = True,
style_callback: Optional[Callable[[dict], dict]] = None,
layer_name: str = "Wetlands",
**kwargs,
) -> None:
"""
Adds National Wetlands Inventory (NWI) data to the map.
Args:
data (Union[str, gpd.GeoDataFrame]): The NWI data to add. It can be a file path or a GeoDataFrame.
col_name (str): The column name to use for styling. Defaults to "WETLAND_TY".
add_legend (bool): Whether to add a legend to the map. Defaults to True.
style_callback (Optional[Callable[[dict], dict]]): A callback function to style the features. Defaults to None.
layer_name (str): The name of the layer to add. Defaults to "Wetlands".
**kwargs: Additional keyword arguments to pass to the add_vector or add_gdf method.
Returns:
None
"""
nwi = {
"Freshwater Forested/Shrub Wetland": "#008837",
"Freshwater Emergent Wetland": "#7fc31c",
"Freshwater Pond": "#688cc0",
"Estuarine and Marine Wetland": "#66c2a5",
"Riverine": "#0190bf",
"Lake": "#13007c",
"Estuarine and Marine Deepwater": "#007c88",
"Other": "#b28656",
}
def nwi_color(feature):
return {
"color": "black",
"fillColor": (
nwi[feature["properties"][col_name]]
if feature["properties"][col_name] in nwi
else "gray"
),
"fillOpacity": 0.6,
"weight": 1,
}
if style_callback is None:
style_callback = nwi_color
if isinstance(data, str):
self.add_vector(
data, style_callback=style_callback, layer_name=layer_name, **kwargs
)
else:
self.add_gdf(
data, style_callback=style_callback, layer_name=layer_name, **kwargs
)
if add_legend:
self.add_legend(title="Wetland Type", builtin_legend="NWI")
add_osm_from_address(self, address, tags, dist=1000, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within some distance N, S, E, W of address to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address |
str |
The address to geocode and use as the central point around which to get the geometries. |
required |
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
dist |
int |
Distance in meters. Defaults to 1000. |
1000 |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_address(
self,
address: str,
tags: dict,
dist: Optional[int] = 1000,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within some distance N, S, E, W of address to the map.
Args:
address (str): The address to geocode and use as the central point around which to get the geometries.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
dist (int, optional): Distance in meters. Defaults to 1000.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_address(address, tags, dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_bbox(self, north, south, east, west, tags, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within a N, S, E, W bounding box to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
north |
float |
Northern latitude of bounding box. |
required |
south |
float |
Southern latitude of bounding box. |
required |
east |
float |
Eastern longitude of bounding box. |
required |
west |
float |
Western longitude of bounding box. |
required |
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_bbox(
self,
north: float,
south: float,
east: float,
west: float,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within a N, S, E, W bounding box to the map.
Args:
north (float): Northern latitude of bounding box.
south (float): Southern latitude of bounding box.
east (float): Eastern longitude of bounding box.
west (float): Western longitude of bounding box.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_bbox(north, south, east, west, tags)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_geocode(self, query, which_result=None, by_osmid=False, buffer_dist=None, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM data of place(s) by name or ID to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query |
str | dict | list |
Query string(s) or structured dict(s) to geocode. |
required |
which_result |
int |
Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None. |
None |
by_osmid |
bool |
If True, handle query as an OSM ID for lookup rather than text search. Defaults to False. |
False |
buffer_dist |
float |
Distance to buffer around the place geometry, in meters. Defaults to None. |
None |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_geocode(
self,
query: Union[str, dict, List],
which_result: Optional[int] = None,
by_osmid: Optional[bool] = False,
buffer_dist: Optional[float] = None,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM data of place(s) by name or ID to the map.
Args:
query (str | dict | list): Query string(s) or structured dict(s) to geocode.
which_result (int, optional): Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None.
by_osmid (bool, optional): If True, handle query as an OSM ID for lookup rather than text search. Defaults to False.
buffer_dist (float, optional): Distance to buffer around the place geometry, in meters. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_geocode(
query, which_result=which_result, by_osmid=by_osmid, buffer_dist=buffer_dist
)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_place(self, query, tags, which_result=None, buffer_dist=None, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within boundaries of geocodable place(s) to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query |
str | dict | list |
Query string(s) or structured dict(s) to geocode. |
required |
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
which_result |
int |
Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None. |
None |
buffer_dist |
float |
Distance to buffer around the place geometry, in meters. Defaults to None. |
None |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_place(
self,
query: Union[str, dict, List],
tags: dict,
which_result: Optional[int] = None,
buffer_dist: Optional[float] = None,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within boundaries of geocodable place(s) to the map.
Args:
query (str | dict | list): Query string(s) or structured dict(s) to geocode.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
which_result (int, optional): Which geocoding result to use. if None, auto-select the first (Multi)Polygon or raise an error if OSM doesn't return one. to get the top match regardless of geometry type, set which_result=1. Defaults to None.
buffer_dist (float, optional): Distance to buffer around the place geometry, in meters. Defaults to None.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_place(query, tags, which_result, buffer_dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_point(self, center_point, tags, dist=1000, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within some distance N, S, E, W of a point to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center_point |
tuple |
The (lat, lng) center point around which to get the geometries. |
required |
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
dist |
int |
Distance in meters. Defaults to 1000. |
1000 |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_point(
self,
center_point: Tuple[float, float],
tags: dict,
dist: Optional[int] = 1000,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within some distance N, S, E, W of a point to the map.
Args:
center_point (tuple): The (lat, lng) center point around which to get the geometries.
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
dist (int, optional): Distance in meters. Defaults to 1000.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_point(center_point, tags, dist)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_polygon(self, polygon, tags, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within boundaries of a (multi)polygon to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
polygon |
shapely.geometry.Polygon | shapely.geometry.MultiPolygon |
Geographic boundaries to fetch geometries within |
required |
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_polygon(
self,
polygon,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within boundaries of a (multi)polygon to the map.
Args:
polygon (shapely.geometry.Polygon | shapely.geometry.MultiPolygon): Geographic boundaries to fetch geometries within
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
gdf = osm.osm_gdf_from_polygon(polygon, tags)
geojson = gdf.__geo_interface__
self.add_geojson(
geojson,
layer_name=layer_name,
style=style,
hover_style=hover_style,
style_callback=style_callback,
fill_colors=fill_colors,
info_mode=info_mode,
)
self.zoom_to_gdf(gdf)
add_osm_from_view(self, tags, layer_name='Untitled', style={}, hover_style={}, style_callback=None, fill_colors=['black'], info_mode='on_hover')
¶
Adds OSM entities within the current map view to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tags |
dict |
Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop. |
required |
layer_name |
str |
The layer name to be used.. Defaults to "Untitled". |
'Untitled' |
style |
dict |
A dictionary specifying the style to be used. Defaults to {}. |
{} |
hover_style |
dict |
Hover style dictionary. Defaults to {}. |
{} |
style_callback |
function |
Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None. |
None |
fill_colors |
list |
The random colors to use for filling polygons. Defaults to ["black"]. |
['black'] |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Source code in leafmap/foliumap.py
def add_osm_from_view(
self,
tags: dict,
layer_name: Optional[str] = "Untitled",
style: Optional[Dict] = {},
hover_style: Optional[Dict] = {},
style_callback: Optional[Callable[[Any], Any]] = None,
fill_colors: Optional[List] = ["black"],
info_mode: Optional[str] = "on_hover",
):
"""Adds OSM entities within the current map view to the map.
Args:
tags (dict): Dict of tags used for finding objects in the selected area. Results returned are the union, not intersection of each individual tag. Each result matches at least one given tag. The dict keys should be OSM tags, (e.g., building, landuse, highway, etc) and the dict values should be either True to retrieve all items with the given tag, or a string to get a single tag-value combination, or a list of strings to get multiple values for the given tag. For example, tags = {‘building’: True} would return all building footprints in the area. tags = {‘amenity’:True, ‘landuse’:[‘retail’,’commercial’], ‘highway’:’bus_stop’} would return all amenities, landuse=retail, landuse=commercial, and highway=bus_stop.
layer_name (str, optional): The layer name to be used.. Defaults to "Untitled".
style (dict, optional): A dictionary specifying the style to be used. Defaults to {}.
hover_style (dict, optional): Hover style dictionary. Defaults to {}.
style_callback (function, optional): Styling function that is called for each feature, and should return the feature style. This styling function takes the feature as argument. Defaults to None.
fill_colors (list, optional): The random colors to use for filling polygons. Defaults to ["black"].
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
"""
pass # folium can't get map bounds. See https://github.com/python-visualization/folium/issues/1118
# bounds = self.get_bounds()
# north, south, east, west = (
# bounds[1][0],
# bounds[0][0],
# bounds[1][1],
# bounds[0][1],
# )
# gdf = osm_gdf_from_bbox(north, south, east, west, tags)
# geojson = gdf.__geo_interface__
# self.add_geojson(
# geojson,
# layer_name=layer_name,
# style=style,
# hover_style=hover_style,
# style_callback=style_callback,
# fill_colors=fill_colors,
# info_mode=info_mode,
# )
# self.zoom_to_gdf(gdf)
add_planet_by_month(self, year=2016, month=1, layer_name=None, api_key=None, token_name='PLANET_API_KEY', **kwargs)
¶
Adds a Planet global mosaic by month to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Parameters:
Name | Type | Description | Default |
---|---|---|---|
year |
int |
The year of Planet global mosaic, must be >=2016. Defaults to 2016. |
2016 |
month |
int |
The month of Planet global mosaic, must be 1-12. Defaults to 1. |
1 |
layer_name |
str |
The layer name to use. Defaults to None. |
None |
api_key |
str |
The Planet API key. Defaults to None. |
None |
token_name |
str |
The environment variable name of the API key. Defaults to "PLANET_API_KEY". |
'PLANET_API_KEY' |
Source code in leafmap/foliumap.py
def add_planet_by_month(
self,
year: Optional[int] = 2016,
month: Optional[int] = 1,
layer_name: Optional[str] = None,
api_key: Optional[str] = None,
token_name: Optional[str] = "PLANET_API_KEY",
**kwargs,
):
"""Adds a Planet global mosaic by month to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Args:
year (int, optional): The year of Planet global mosaic, must be >=2016. Defaults to 2016.
month (int, optional): The month of Planet global mosaic, must be 1-12. Defaults to 1.
layer_name (str, optional): The layer name to use. Defaults to None.
api_key (str, optional): The Planet API key. Defaults to None.
token_name (str, optional): The environment variable name of the API key. Defaults to "PLANET_API_KEY".
"""
if layer_name is None and "name" in kwargs:
layer_name = kwargs.pop("name")
layer = common.planet_tile_by_month(
year, month, layer_name, api_key, token_name, tile_format="folium"
)
layer.add_to(self)
add_planet_by_quarter(self, year=2016, quarter=1, layer_name=None, api_key=None, token_name='PLANET_API_KEY', **kwargs)
¶
Adds a Planet global mosaic by quarter to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Parameters:
Name | Type | Description | Default |
---|---|---|---|
year |
int |
The year of Planet global mosaic, must be >=2016. Defaults to 2016. |
2016 |
quarter |
int |
The quarter of Planet global mosaic, must be 1-12. Defaults to 1. |
1 |
layer_name |
str |
The layer name to use. Defaults to None. |
None |
api_key |
str |
The Planet API key. Defaults to None. |
None |
token_name |
str |
The environment variable name of the API key. Defaults to "PLANET_API_KEY". |
'PLANET_API_KEY' |
Source code in leafmap/foliumap.py
def add_planet_by_quarter(
self,
year: Optional[int] = 2016,
quarter: Optional[int] = 1,
layer_name: Optional[str] = None,
api_key: Optional[str] = None,
token_name: Optional[str] = "PLANET_API_KEY",
**kwargs,
):
"""Adds a Planet global mosaic by quarter to the map. To get a Planet API key, see https://developers.planet.com/quickstart/apis
Args:
year (int, optional): The year of Planet global mosaic, must be >=2016. Defaults to 2016.
quarter (int, optional): The quarter of Planet global mosaic, must be 1-12. Defaults to 1.
layer_name (str, optional): The layer name to use. Defaults to None.
api_key (str, optional): The Planet API key. Defaults to None.
token_name (str, optional): The environment variable name of the API key. Defaults to "PLANET_API_KEY".
"""
if layer_name is None and "name" in kwargs:
layer_name = kwargs.pop("name")
layer = common.planet_tile_by_quarter(
year, quarter, layer_name, api_key, token_name, tile_format="folium"
)
layer.add_to(self)
add_pmtiles(self, url, style=None, name=None, tooltip=True, overlay=True, control=True, show=True, zoom_to_layer=True, **kwargs)
¶
Adds a PMTiles layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the PMTiles file. |
required |
style |
str |
The CSS style to apply to the layer. Defaults to None. See https://docs.mapbox.com/style-spec/reference/layers/ for more info. |
None |
name |
str |
The name of the layer. Defaults to None. |
None |
tooltip |
bool |
Whether to show a tooltip when hovering over the layer. Defaults to True. |
True |
overlay |
bool |
Whether the layer should be added as an overlay. Defaults to True. |
True |
control |
bool |
Whether to include the layer in the layer control. Defaults to True. |
True |
show |
bool |
Whether the layer should be shown initially. Defaults to True. |
True |
zoom_to_layer |
bool |
Whether to zoom to the layer extent. Defaults to True. |
True |
**kwargs |
Additional keyword arguments to pass to the PMTilesLayer constructor. |
{} |
Returns:
Type | Description |
---|---|
None |
None |
Source code in leafmap/foliumap.py
def add_pmtiles(
self,
url,
style=None,
name=None,
tooltip=True,
overlay=True,
control=True,
show=True,
zoom_to_layer=True,
**kwargs,
) -> None:
"""
Adds a PMTiles layer to the map.
Args:
url (str): The URL of the PMTiles file.
style (str, optional): The CSS style to apply to the layer. Defaults to None.
See https://docs.mapbox.com/style-spec/reference/layers/ for more info.
name (str, optional): The name of the layer. Defaults to None.
tooltip (bool, optional): Whether to show a tooltip when hovering over the layer. Defaults to True.
overlay (bool, optional): Whether the layer should be added as an overlay. Defaults to True.
control (bool, optional): Whether to include the layer in the layer control. Defaults to True.
show (bool, optional): Whether the layer should be shown initially. Defaults to True.
zoom_to_layer (bool, optional): Whether to zoom to the layer extent. Defaults to True.
**kwargs: Additional keyword arguments to pass to the PMTilesLayer constructor.
Returns:
None
"""
try:
if style is None:
style = common.pmtiles_style(url)
layer = PMTilesLayer(
url,
style=style,
name=name,
tooltip=tooltip,
overlay=overlay,
control=control,
show=show,
**kwargs,
)
self.add_child(layer)
if zoom_to_layer:
metadata = common.pmtiles_metadata(url)
bounds = metadata["bounds"]
self.zoom_to_bounds(bounds)
except Exception as e:
print(e)
add_point_layer(self, filename, popup=None, layer_name='Marker Cluster', **kwargs)
¶
Adds a point layer to the map with a popup attribute.
Source code in leafmap/foliumap.py
def add_point_layer(
self, filename, popup=None, layer_name="Marker Cluster", **kwargs
):
"""Adds a point layer to the map with a popup attribute."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
add_points_from_xy(self, data, x='longitude', y='latitude', popup=None, min_width=100, max_width=200, layer_name='Marker Cluster', color_column=None, marker_colors=None, icon_colors=['white'], icon_names=['info'], angle=0, prefix='fa', add_legend=True, max_cluster_radius=80, **kwargs)
¶
Adds a marker cluster to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str | pd.DataFrame |
A csv or Pandas DataFrame containing x, y, z values. |
required |
x |
str |
The column name for the x values. Defaults to "longitude". |
'longitude' |
y |
str |
The column name for the y values. Defaults to "latitude". |
'latitude' |
popup |
list |
A list of column names to be used as the popup. Defaults to None. |
None |
min_width |
int |
The minimum width of the popup. Defaults to 100. |
100 |
max_width |
int |
The maximum width of the popup. Defaults to 200. |
200 |
layer_name |
str |
The name of the layer. Defaults to "Marker Cluster". |
'Marker Cluster' |
color_column |
str |
The column name for the color values. Defaults to None. |
None |
marker_colors |
list |
A list of colors to be used for the markers. Defaults to None. |
None |
icon_colors |
list |
A list of colors to be used for the icons. Defaults to ['white']. |
['white'] |
icon_names |
list |
A list of names to be used for the icons. More icons can be found at https://fontawesome.com/v4/icons or https://getbootstrap.com/docs/3.3/components/?utm_source=pocket_mylist. Defaults to ['info']. |
['info'] |
angle |
int |
The angle of the icon. Defaults to 0. |
0 |
prefix |
str |
The prefix states the source of the icon. 'fa' for font-awesome or 'glyphicon' for bootstrap 3. Defaults to 'fa'. |
'fa' |
add_legend |
bool |
If True, a legend will be added to the map. Defaults to True. |
True |
max_cluster_radius |
int |
The maximum radius that a cluster will cover from the central marker (in pixels). |
80 |
**kwargs |
Other keyword arguments to pass to folium.MarkerCluster(). For a list of available options, see https://github.com/Leaflet/Leaflet.markercluster. For example, to change the cluster radius, use options={"maxClusterRadius": 50}. |
{} |
Source code in leafmap/foliumap.py
def add_points_from_xy(
self,
data: Union[str, pd.DataFrame],
x: Optional[str] = "longitude",
y: Optional[str] = "latitude",
popup: Optional[List] = None,
min_width: Optional[int] = 100,
max_width: Optional[int] = 200,
layer_name: Optional[str] = "Marker Cluster",
color_column: Optional[str] = None,
marker_colors: Optional[List] = None,
icon_colors: Optional[List] = ["white"],
icon_names: Optional[List] = ["info"],
angle: Optional[int] = 0,
prefix: Optional[str] = "fa",
add_legend: Optional[bool] = True,
max_cluster_radius: Optional[int] = 80,
**kwargs,
):
"""Adds a marker cluster to the map.
Args:
data (str | pd.DataFrame): A csv or Pandas DataFrame containing x, y, z values.
x (str, optional): The column name for the x values. Defaults to "longitude".
y (str, optional): The column name for the y values. Defaults to "latitude".
popup (list, optional): A list of column names to be used as the popup. Defaults to None.
min_width (int, optional): The minimum width of the popup. Defaults to 100.
max_width (int, optional): The maximum width of the popup. Defaults to 200.
layer_name (str, optional): The name of the layer. Defaults to "Marker Cluster".
color_column (str, optional): The column name for the color values. Defaults to None.
marker_colors (list, optional): A list of colors to be used for the markers. Defaults to None.
icon_colors (list, optional): A list of colors to be used for the icons. Defaults to ['white'].
icon_names (list, optional): A list of names to be used for the icons. More icons can be found
at https://fontawesome.com/v4/icons or https://getbootstrap.com/docs/3.3/components/?utm_source=pocket_mylist. Defaults to ['info'].
angle (int, optional): The angle of the icon. Defaults to 0.
prefix (str, optional): The prefix states the source of the icon. 'fa' for font-awesome or 'glyphicon' for bootstrap 3. Defaults to 'fa'.
add_legend (bool, optional): If True, a legend will be added to the map. Defaults to True.
max_cluster_radius (int, optional): The maximum radius that a cluster will cover from the central marker (in pixels).
**kwargs: Other keyword arguments to pass to folium.MarkerCluster(). For a list of available options,
see https://github.com/Leaflet/Leaflet.markercluster. For example, to change the cluster radius, use options={"maxClusterRadius": 50}.
"""
import pandas as pd
if "maxClusterRadius" not in kwargs:
kwargs["maxClusterRadius"] = max_cluster_radius
color_options = [
"red",
"blue",
"green",
"purple",
"orange",
"darkred",
"lightred",
"beige",
"darkblue",
"darkgreen",
"cadetblue",
"darkpurple",
"white",
"pink",
"lightblue",
"lightgreen",
"gray",
"black",
"lightgray",
]
if isinstance(data, pd.DataFrame):
df = data
elif not data.startswith("http") and (not os.path.exists(data)):
raise FileNotFoundError("The specified input csv does not exist.")
else:
df = pd.read_csv(data)
col_names = df.columns.values.tolist()
if color_column is not None and color_column not in col_names:
raise ValueError(
f"The color column {color_column} does not exist in the dataframe."
)
if color_column is not None:
items = list(set(df[color_column]))
else:
items = None
if color_column is not None and marker_colors is None:
if len(items) > len(color_options):
raise ValueError(
f"The number of unique values in the color column {color_column} is greater than the number of available colors."
)
else:
marker_colors = color_options[: len(items)]
elif color_column is not None and marker_colors is not None:
if len(items) != len(marker_colors):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if items is not None:
if len(icon_colors) == 1:
icon_colors = icon_colors * len(items)
elif len(items) != len(icon_colors):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if len(icon_names) == 1:
icon_names = icon_names * len(items)
elif len(items) != len(icon_names):
raise ValueError(
f"The number of unique values in the color column {color_column} is not equal to the number of available colors."
)
if popup is None:
popup = col_names
if x not in col_names:
raise ValueError(f"x must be one of the following: {', '.join(col_names)}")
if y not in col_names:
raise ValueError(f"y must be one of the following: {', '.join(col_names)}")
marker_cluster = plugins.MarkerCluster(name=layer_name, **kwargs).add_to(self)
for idx, row in df.iterrows():
html = ""
for p in popup:
html = html + "<b>" + p + "</b>" + ": " + str(row[p]) + "<br>"
popup_html = folium.Popup(html, min_width=min_width, max_width=max_width)
if items is not None:
index = items.index(row[color_column])
marker_icon = folium.Icon(
color=marker_colors[index],
icon_color=icon_colors[index],
icon=icon_names[index],
angle=angle,
prefix=prefix,
)
else:
marker_icon = None
folium.Marker(
location=[row[y], row[x]],
popup=popup_html,
icon=marker_icon,
).add_to(marker_cluster)
if items is not None and add_legend:
marker_colors = [common.check_color(c) for c in marker_colors]
self.add_legend(
title=color_column.title(), colors=marker_colors, labels=items
)
add_raster(self, source, indexes=None, colormap=None, vmin=None, vmax=None, nodata=None, attribution=None, layer_name='Raster', array_args={}, **kwargs)
¶
Add a local raster dataset to the map.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer) and
if the raster does not render properly, try installing jupyter-server-proxy using pip install jupyter-server-proxy
,
then running the following code before calling this function. For more info, see https://bit.ly/3JbmF93.
1 2 |
|
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source |
str |
The path to the GeoTIFF file or the URL of the Cloud Optimized GeoTIFF. |
required |
indexes |
int |
The band(s) to use. Band indexing starts at 1. Defaults to None. |
None |
colormap |
str |
The name of the colormap from |
None |
vmin |
float |
The minimum value to use when colormapping the colormap when plotting a single band. Defaults to None. |
None |
vmax |
float |
The maximum value to use when colormapping the colormap when plotting a single band. Defaults to None. |
None |
nodata |
float |
The value from the band to use to interpret as not valid data. Defaults to None. |
None |
attribution |
str |
Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None. |
None |
layer_name |
str |
The layer name to use. Defaults to 'Raster'. |
'Raster' |
array_args |
dict |
Additional arguments to pass to |
{} |
Source code in leafmap/foliumap.py
def add_raster(
self,
source: str,
indexes: Optional[int] = None,
colormap: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = "Raster",
array_args: Optional[Dict] = {},
**kwargs,
):
"""Add a local raster dataset to the map.
If you are using this function in JupyterHub on a remote server (e.g., Binder, Microsoft Planetary Computer) and
if the raster does not render properly, try installing jupyter-server-proxy using `pip install jupyter-server-proxy`,
then running the following code before calling this function. For more info, see https://bit.ly/3JbmF93.
import os
os.environ['LOCALTILESERVER_CLIENT_PREFIX'] = 'proxy/{port}'
Args:
source (str): The path to the GeoTIFF file or the URL of the Cloud Optimized GeoTIFF.
indexes (int, optional): The band(s) to use. Band indexing starts at 1. Defaults to None.
colormap (str, optional): The name of the colormap from `matplotlib` to use when plotting a single band. See https://matplotlib.org/stable/gallery/color/colormap_reference.html. Default is greyscale.
vmin (float, optional): The minimum value to use when colormapping the colormap when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the colormap when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to 'Raster'.
array_args (dict, optional): Additional arguments to pass to `array_to_image`. Defaults to {}.
"""
import numpy as np
import xarray as xr
if isinstance(source, np.ndarray) or isinstance(source, xr.DataArray):
source = common.array_to_image(source, **array_args)
tile_layer, tile_client = common.get_local_tile_layer(
source,
indexes=indexes,
colormap=colormap,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
tile_format="folium",
layer_name=layer_name,
return_client=True,
**kwargs,
)
self.add_layer(tile_layer)
bounds = tile_client.bounds() # [ymin, ymax, xmin, xmax]
bounds = (
bounds[2],
bounds[0],
bounds[3],
bounds[1],
) # [minx, miny, maxx, maxy]
self.zoom_to_bounds(bounds)
common.arc_add_layer(tile_layer.tiles, layer_name, True, 1.0)
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
add_raster_legacy(self, image, bands=None, layer_name=None, colormap=None, x_dim='x', y_dim='y')
¶
Adds a local raster dataset to the map.
Source code in leafmap/foliumap.py
def add_raster_legacy(
self,
image,
bands=None,
layer_name=None,
colormap=None,
x_dim="x",
y_dim="y",
):
"""Adds a local raster dataset to the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
add_remote_tile(self, source, indexes=None, colormap=None, vmin=None, vmax=None, nodata=None, attribution=None, layer_name=None, **kwargs)
¶
Add a remote Cloud Optimized GeoTIFF (COG) to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source |
str |
The path to the remote Cloud Optimized GeoTIFF. |
required |
indexes |
int |
The band(s) to use. Band indexing starts at 1. Defaults to None. |
None |
colormap |
str |
The name of the colormap from |
None |
vmin |
float |
The minimum value to use when colormapping the palette when plotting a single band. Defaults to None. |
None |
vmax |
float |
The maximum value to use when colormapping the palette when plotting a single band. Defaults to None. |
None |
nodata |
float |
The value from the band to use to interpret as not valid data. Defaults to None. |
None |
attribution |
str |
Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None. |
None |
layer_name |
str |
The layer name to use. Defaults to None. |
None |
Source code in leafmap/foliumap.py
def add_remote_tile(
self,
source: str,
indexes: Optional[int] = None,
colormap: Optional[str] = None,
vmin: Optional[float] = None,
vmax: Optional[float] = None,
nodata: Optional[float] = None,
attribution: Optional[str] = None,
layer_name: Optional[str] = None,
**kwargs,
):
"""Add a remote Cloud Optimized GeoTIFF (COG) to the map.
Args:
source (str): The path to the remote Cloud Optimized GeoTIFF.
indexes (int, optional): The band(s) to use. Band indexing starts at 1. Defaults to None.
colormap (str, optional): The name of the colormap from `matplotlib` to use when plotting a single band. See https://matplotlib.org/stable/gallery/color/colormap_reference.html. Default is greyscale.
vmin (float, optional): The minimum value to use when colormapping the palette when plotting a single band. Defaults to None.
vmax (float, optional): The maximum value to use when colormapping the palette when plotting a single band. Defaults to None.
nodata (float, optional): The value from the band to use to interpret as not valid data. Defaults to None.
attribution (str, optional): Attribution for the source raster. This defaults to a message about it being a local file.. Defaults to None.
layer_name (str, optional): The layer name to use. Defaults to None.
"""
if isinstance(source, str) and source.startswith("http"):
self.add_raster(
source,
indexes=indexes,
colormap=colormap,
vmin=vmin,
vmax=vmax,
nodata=nodata,
attribution=attribution,
layer_name=layer_name,
**kwargs,
)
else:
raise Exception("The source must be a URL.")
add_search_control(self, url, marker=None, zoom=None, position='topleft', **kwargs)
¶
Adds a search control to the map.
Source code in leafmap/foliumap.py
def add_search_control(
self, url, marker=None, zoom=None, position="topleft", **kwargs
):
"""Adds a search control to the map."""
print("The folium plotting backend does not support this function.")
add_shp(self, in_shp, layer_name='Untitled', info_mode='on_hover', zoom_to_layer=True, **kwargs)
¶
Adds a shapefile to the map. See https://python-visualization.github.io/folium/modules.html#folium.features.GeoJson for more info about setting style.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_shp |
str |
The input file path or HTTP URL (*.zip) to the shapefile. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
zoom_to_layer |
bool |
Whether to zoom to the layer. Defaults to True. |
True |
Exceptions:
Type | Description |
---|---|
FileNotFoundError |
The provided shapefile could not be found. |
Source code in leafmap/foliumap.py
def add_shp(
self,
in_shp: str,
layer_name: Optional[str] = "Untitled",
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds a shapefile to the map. See https://python-visualization.github.io/folium/modules.html#folium.features.GeoJson for more info about setting style.
Args:
in_shp (str): The input file path or HTTP URL (*.zip) to the shapefile.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
Raises:
FileNotFoundError: The provided shapefile could not be found.
"""
import geopandas as gpd
gdf = gpd.read_file(in_shp)
self.add_gdf(
gdf,
layer_name,
zoom_to_layer,
info_mode,
**kwargs,
)
add_stac_layer(self, url=None, collection=None, item=None, assets=None, bands=None, titiler_endpoint=None, name='STAC Layer', attribution='.', opacity=1.0, shown=True, fit_bounds=True, **kwargs)
¶
Adds a STAC TileLayer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
HTTP URL to a STAC item, e.g., https://canada-spot-ortho.s3.amazonaws.com/canada_spot_orthoimages/canada_spot5_orthoimages/S5_2007/S5_11055_6057_20070622/S5_11055_6057_20070622.json |
None |
collection |
str |
The Microsoft Planetary Computer STAC collection ID, e.g., landsat-8-c2-l2. |
None |
item |
str |
The Microsoft Planetary Computer STAC item ID, e.g., LC08_L2SP_047027_20201204_02_T1. |
None |
assets |
str | list |
The Microsoft Planetary Computer STAC asset ID, e.g., ["SR_B7", "SR_B5", "SR_B4"]. |
None |
bands |
list |
A list of band names, e.g., ["SR_B7", "SR_B5", "SR_B4"] |
None |
titiler_endpoint |
str |
Titiler endpoint, e.g., "https://titiler.xyz", "planetary-computer", "pc". Defaults to None. |
None |
name |
str |
The layer name to use for the layer. Defaults to 'STAC Layer'. |
'STAC Layer' |
attribution |
str |
The attribution to use. Defaults to ''. |
'.' |
opacity |
float |
The opacity of the layer. Defaults to 1. |
1.0 |
shown |
bool |
A flag indicating whether the layer should be on by default. Defaults to True. |
True |
fit_bounds |
bool |
A flag indicating whether the map should be zoomed to the layer extent. Defaults to True. |
True |
Source code in leafmap/foliumap.py
def add_stac_layer(
self,
url: str = None,
collection: str = None,
item: str = None,
assets: Union[str, List] = None,
bands: List = None,
titiler_endpoint: Optional[str] = None,
name: Optional[str] = "STAC Layer",
attribution: Optional[str] = ".",
opacity: Optional[float] = 1.0,
shown: Optional[bool] = True,
fit_bounds: Optional[bool] = True,
**kwargs,
):
"""Adds a STAC TileLayer to the map.
Args:
url (str): HTTP URL to a STAC item, e.g., https://canada-spot-ortho.s3.amazonaws.com/canada_spot_orthoimages/canada_spot5_orthoimages/S5_2007/S5_11055_6057_20070622/S5_11055_6057_20070622.json
collection (str): The Microsoft Planetary Computer STAC collection ID, e.g., landsat-8-c2-l2.
item (str): The Microsoft Planetary Computer STAC item ID, e.g., LC08_L2SP_047027_20201204_02_T1.
assets (str | list): The Microsoft Planetary Computer STAC asset ID, e.g., ["SR_B7", "SR_B5", "SR_B4"].
bands (list): A list of band names, e.g., ["SR_B7", "SR_B5", "SR_B4"]
titiler_endpoint (str, optional): Titiler endpoint, e.g., "https://titiler.xyz", "planetary-computer", "pc". Defaults to None.
name (str, optional): The layer name to use for the layer. Defaults to 'STAC Layer'.
attribution (str, optional): The attribution to use. Defaults to ''.
opacity (float, optional): The opacity of the layer. Defaults to 1.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
fit_bounds (bool, optional): A flag indicating whether the map should be zoomed to the layer extent. Defaults to True.
"""
tile_url = common.stac_tile(
url, collection, item, assets, bands, titiler_endpoint, **kwargs
)
bounds = common.stac_bounds(url, collection, item, titiler_endpoint)
self.add_tile_layer(
url=tile_url,
name=name,
attribution=attribution,
opacity=opacity,
shown=shown,
)
if fit_bounds:
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
common.arc_zoom_to_extent(bounds[0], bounds[1], bounds[2], bounds[3])
add_text(self, text, fontsize=20, fontcolor='black', bold=False, padding='5px', background=True, bg_color='white', border_radius='5px', position='bottomright', **kwargs)
¶
Add text to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str |
The text to add. |
required |
fontsize |
int |
The font size. Defaults to 20. |
20 |
fontcolor |
str |
The font color. Defaults to "black". |
'black' |
bold |
bool |
Whether to use bold font. Defaults to False. |
False |
padding |
str |
The padding. Defaults to "5px". |
'5px' |
background |
bool |
Whether to use background. Defaults to True. |
True |
bg_color |
str |
The background color. Defaults to "white". |
'white' |
border_radius |
str |
The border radius. Defaults to "5px". |
'5px' |
position |
str |
The position of the widget. Defaults to "bottomright". |
'bottomright' |
Source code in leafmap/foliumap.py
def add_text(
self,
text: str,
fontsize: Optional[int] = 20,
fontcolor: Optional[str] = "black",
bold: Optional[bool] = False,
padding: Optional[str] = "5px",
background: Optional[bool] = True,
bg_color: Optional[str] = "white",
border_radius: Optional[str] = "5px",
position: Optional[str] = "bottomright",
**kwargs,
):
"""Add text to the map.
Args:
text (str): The text to add.
fontsize (int, optional): The font size. Defaults to 20.
fontcolor (str, optional): The font color. Defaults to "black".
bold (bool, optional): Whether to use bold font. Defaults to False.
padding (str, optional): The padding. Defaults to "5px".
background (bool, optional): Whether to use background. Defaults to True.
bg_color (str, optional): The background color. Defaults to "white".
border_radius (str, optional): The border radius. Defaults to "5px".
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
if background:
text = f"""<div style="font-size: {fontsize}px; color: {fontcolor}; font-weight: {'bold' if bold else 'normal'};
padding: {padding}; background-color: {bg_color};
border-radius: {border_radius};">{text}</div>"""
else:
text = f"""<div style="font-size: {fontsize}px; color: {fontcolor}; font-weight: {'bold' if bold else 'normal'};
padding: {padding};">{text}</div>"""
self.add_html(text, position=position, **kwargs)
add_tile_layer(self, url, name, attribution, overlay=True, control=True, shown=True, opacity=1.0, API_key=None, **kwargs)
¶
Add a XYZ tile layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the XYZ tile service. |
required |
name |
str |
The layer name to use on the layer control. |
required |
attribution |
str |
The attribution of the data layer. |
required |
overlay |
bool |
Allows overlay. Defaults to True. |
True |
control |
bool |
Adds the layer to the layer control. Defaults to True. |
True |
shown |
bool |
A flag indicating whether the layer should be on by default. Defaults to True. |
True |
opacity |
float |
Sets the opacity for the layer. |
1.0 |
API_key |
str |
– API key for Cloudmade or Mapbox tiles. Defaults to True. |
None |
Source code in leafmap/foliumap.py
def add_tile_layer(
self,
url: str,
name: str,
attribution: str,
overlay: Optional[bool] = True,
control: Optional[bool] = True,
shown: Optional[bool] = True,
opacity: Optional[float] = 1.0,
API_key: Optional[str] = None,
**kwargs,
):
"""Add a XYZ tile layer to the map.
Args:
url (str): The URL of the XYZ tile service.
name (str): The layer name to use on the layer control.
attribution (str): The attribution of the data layer.
overlay (bool, optional): Allows overlay. Defaults to True.
control (bool, optional): Adds the layer to the layer control. Defaults to True.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
opacity (float, optional): Sets the opacity for the layer.
API_key (str, optional): – API key for Cloudmade or Mapbox tiles. Defaults to True.
"""
if "max_zoom" not in kwargs:
kwargs["max_zoom"] = 30
if "max_native_zoom" not in kwargs:
kwargs["max_native_zoom"] = 30
try:
folium.raster_layers.TileLayer(
tiles=url,
name=name,
attr=attribution,
overlay=overlay,
control=control,
show=shown,
opacity=opacity,
API_key=API_key,
**kwargs,
).add_to(self)
common.arc_add_layer(url, name, shown, opacity)
except Exception as e:
raise Exception(e)
add_time_slider(self, layers_dict={}, labels=None, time_interval=1, position='bottomright', slider_length='150px', **kwargs)
¶
Adds a time slider to the map.
Source code in leafmap/foliumap.py
def add_time_slider(
self,
layers_dict={},
labels=None,
time_interval=1,
position="bottomright",
slider_length="150px",
**kwargs,
):
"""Adds a time slider to the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
add_title(self, title, align='center', font_size='16px', style=None)
¶
Adds a title to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
title |
str |
The title to use. |
required |
align |
str |
The alignment of the title, can be ["center", "left", "right"]. Defaults to "center". |
'center' |
font_size |
str |
The font size in the unit of px. Defaults to "16px". |
'16px' |
style |
[type] |
The style to use. Defaults to None. |
None |
Source code in leafmap/foliumap.py
def add_title(
self,
title: str,
align: Optional[str] = "center",
font_size: Optional[str] = "16px",
style=None,
):
"""Adds a title to the map.
Args:
title (str): The title to use.
align (str, optional): The alignment of the title, can be ["center", "left", "right"]. Defaults to "center".
font_size (str, optional): The font size in the unit of px. Defaults to "16px".
style ([type], optional): The style to use. Defaults to None.
"""
if style is None:
title_html = """
<h3 align={} style="font-size:{}"><b>{}</b></h3>
""".format(
align, font_size, title
)
else:
title_html = """
<h3 align={} style={}><b>{}</b></h3>
""".format(
align, style, title
)
self.get_root().html.add_child(folium.Element(title_html))
add_vector(self, filename, layer_name='Untitled', bbox=None, mask=None, rows=None, info_mode='on_hover', zoom_to_layer=True, **kwargs)
¶
Adds any geopandas-supported vector dataset to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename |
str |
Either the absolute or relative path to the file or URL to be opened, or any object with a read() method (such as an open file or StringIO). |
required |
layer_name |
str |
The layer name to use. Defaults to "Untitled". |
'Untitled' |
bbox |
tuple | GeoDataFrame or GeoSeries | shapely Geometry |
Filter features by given bounding box, GeoSeries, GeoDataFrame or a shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with mask. Defaults to None. |
None |
mask |
dict | GeoDataFrame or GeoSeries | shapely Geometry |
Filter for features that intersect with the given dict-like geojson geometry, GeoSeries, GeoDataFrame or shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with bbox. Defaults to None. |
None |
rows |
int or slice |
Load in specific rows by passing an integer (first n rows) or a slice() object.. Defaults to None. |
None |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
zoom_to_layer |
bool |
Whether to zoom to the layer. Defaults to True. |
True |
Source code in leafmap/foliumap.py
def add_vector(
self,
filename: str,
layer_name: Optional[str] = "Untitled",
bbox: Optional[Tuple] = None,
mask: Optional[Dict] = None,
rows: Optional[Union[int, slice]] = None,
info_mode: Optional[str] = "on_hover",
zoom_to_layer: Optional[bool] = True,
**kwargs,
):
"""Adds any geopandas-supported vector dataset to the map.
Args:
filename (str): Either the absolute or relative path to the file or URL to be opened, or any object with a read() method (such as an open file or StringIO).
layer_name (str, optional): The layer name to use. Defaults to "Untitled".
bbox (tuple | GeoDataFrame or GeoSeries | shapely Geometry, optional): Filter features by given bounding box, GeoSeries, GeoDataFrame or a shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with mask. Defaults to None.
mask (dict | GeoDataFrame or GeoSeries | shapely Geometry, optional): Filter for features that intersect with the given dict-like geojson geometry, GeoSeries, GeoDataFrame or shapely geometry. CRS mis-matches are resolved if given a GeoSeries or GeoDataFrame. Cannot be used with bbox. Defaults to None.
rows (int or slice, optional): Load in specific rows by passing an integer (first n rows) or a slice() object.. Defaults to None.
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
zoom_to_layer (bool, optional): Whether to zoom to the layer. Defaults to True.
"""
import fiona
import geopandas as gpd
if isinstance(filename, str) and filename.endswith(".kml"):
fiona.drvsupport.supported_drivers["KML"] = "rw"
gdf = gpd.read_file(
filename,
bbox=bbox,
mask=mask,
rows=rows,
driver="KML",
)
else:
gdf = gpd.read_file(
filename,
bbox=bbox,
mask=mask,
rows=rows,
)
self.add_gdf(
gdf,
layer_name,
zoom_to_layer,
info_mode,
**kwargs,
)
add_vector_tile(self, url, styles={}, layer_name='Vector Tile', **kwargs)
¶
Adds a VectorTileLayer to the map. It wraps the folium.plugins.VectorGridProtobuf class. See https://github.com/python-visualization/folium/blob/main/folium/plugins/vectorgrid_protobuf.py#L7
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the tile layer |
required |
styles |
dict | str |
Style dict, specific to the vector tile source. If styles is given as a string, it will be passed directly to folium.plugins.VectorGrid directly, ignoring additional kwargs. See the "conditional styling" example in https://github.com/iwpnd/folium-vectorgrid |
{} |
layer_name |
str |
The layer name to use for the layer. Defaults to 'Vector Tile'. |
'Vector Tile' |
kwargs |
Additional keyword arguments to pass to the folium.plugins.VectorGridProtobuf class. |
{} |
Source code in leafmap/foliumap.py
def add_vector_tile(
self,
url: Optional[str],
styles: Optional[Union[dict, str]] = {},
layer_name: Optional[str] = "Vector Tile",
**kwargs,
):
"""Adds a VectorTileLayer to the map. It wraps the folium.plugins.VectorGridProtobuf class. See
https://github.com/python-visualization/folium/blob/main/folium/plugins/vectorgrid_protobuf.py#L7
Args:
url (str, optional): The URL of the tile layer
styles (dict | str, optional): Style dict, specific to the vector tile source.
If styles is given as a string, it will be passed directly to folium.plugins.VectorGrid
directly, ignoring additional kwargs. See the "conditional styling" example in
https://github.com/iwpnd/folium-vectorgrid
layer_name (str, optional): The layer name to use for the layer. Defaults to 'Vector Tile'.
kwargs: Additional keyword arguments to pass to the folium.plugins.VectorGridProtobuf class.
"""
if isinstance(styles, str):
options = styles
else:
options = {}
for key, value in kwargs.items():
options[key] = value
if "vector_tile_layer_styles" in options:
styles = options["vector_tile_layer_styles"]
del options["vector_tile_layer_styles"]
if styles:
options["vectorTileLayerStyles"] = styles
vc = plugins.VectorGridProtobuf(url, layer_name, options)
self.add_child(vc)
add_vector_tile_layer(self, url, styles={}, layer_name='Vector Tile', **kwargs)
¶
Adds a VectorTileLayer to the map. It wraps the folium.plugins.VectorGridProtobuf class. See https://github.com/python-visualization/folium/blob/main/folium/plugins/vectorgrid_protobuf.py#L7
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the tile layer |
required |
styles |
dict | str |
Style dict, specific to the vector tile source. If styles is given as a string, it will be passed directly to folium.plugins.VectorGrid directly, ignoring additional kwargs. See the "conditional styling" example in https://github.com/iwpnd/folium-vectorgrid |
{} |
layer_name |
str |
The layer name to use for the layer. Defaults to 'Vector Tile'. |
'Vector Tile' |
kwargs |
Additional keyword arguments to pass to the folium.plugins.VectorGridProtobuf class. |
{} |
Source code in leafmap/foliumap.py
def add_vector_tile(
self,
url: Optional[str],
styles: Optional[Union[dict, str]] = {},
layer_name: Optional[str] = "Vector Tile",
**kwargs,
):
"""Adds a VectorTileLayer to the map. It wraps the folium.plugins.VectorGridProtobuf class. See
https://github.com/python-visualization/folium/blob/main/folium/plugins/vectorgrid_protobuf.py#L7
Args:
url (str, optional): The URL of the tile layer
styles (dict | str, optional): Style dict, specific to the vector tile source.
If styles is given as a string, it will be passed directly to folium.plugins.VectorGrid
directly, ignoring additional kwargs. See the "conditional styling" example in
https://github.com/iwpnd/folium-vectorgrid
layer_name (str, optional): The layer name to use for the layer. Defaults to 'Vector Tile'.
kwargs: Additional keyword arguments to pass to the folium.plugins.VectorGridProtobuf class.
"""
if isinstance(styles, str):
options = styles
else:
options = {}
for key, value in kwargs.items():
options[key] = value
if "vector_tile_layer_styles" in options:
styles = options["vector_tile_layer_styles"]
del options["vector_tile_layer_styles"]
if styles:
options["vectorTileLayerStyles"] = styles
vc = plugins.VectorGridProtobuf(url, layer_name, options)
self.add_child(vc)
add_widget(self, content, position='bottomright', **kwargs)
¶
Add a widget (e.g., text, HTML, figure) to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content |
str |
The widget to add. |
required |
position |
str |
The position of the widget. Defaults to "bottomright". |
'bottomright' |
Source code in leafmap/foliumap.py
def add_widget(
self, content: str, position: Optional[str] = "bottomright", **kwargs
):
"""Add a widget (e.g., text, HTML, figure) to the map.
Args:
content (str): The widget to add.
position (str, optional): The position of the widget. Defaults to "bottomright".
"""
from matplotlib import figure
import base64
from io import BytesIO
allowed_positions = ["topleft", "topright", "bottomleft", "bottomright"]
if position not in allowed_positions:
raise Exception(f"position must be one of {allowed_positions}")
try:
if isinstance(content, str):
widget = CustomControl(content, position=position)
widget.add_to(self)
elif isinstance(content, figure.Figure):
buf = BytesIO()
content.savefig(buf, format="png")
buf.seek(0)
b64_content = base64.b64encode(buf.read()).decode("utf-8")
widget = CustomControl(
f"""<img src="data:image/png;base64,{b64_content}">""",
position=position,
)
widget.add_to(self)
else:
raise Exception("The content must be a string or a matplotlib figure")
except Exception as e:
raise Exception(f"Error adding widget: {e}")
add_wms_layer(self, url, layers, name=None, attribution='', overlay=True, control=True, shown=True, format='image/png', transparent=True, version='1.1.1', styles='', **kwargs)
¶
Add a WMS layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the WMS web service. |
required |
layers |
str |
Comma-separated list of WMS layers to show. |
required |
name |
str |
The layer name to use on the layer control. Defaults to None. |
None |
attribution |
str |
The attribution of the data layer. Defaults to ''. |
'' |
overlay |
bool |
Allows overlay. Defaults to True. |
True |
control |
bool |
Adds the layer to the layer control. Defaults to True. |
True |
shown |
bool |
A flag indicating whether the layer should be on by default. Defaults to True. |
True |
format |
str |
WMS image format (use ‘image/png’ for layers with transparency). Defaults to 'image/png'. |
'image/png' |
transparent |
bool |
Whether the layer shall allow transparency. Defaults to True. |
True |
version |
str |
Version of the WMS service to use. Defaults to "1.1.1". |
'1.1.1' |
styles |
str |
Comma-separated list of WMS styles. Defaults to "". |
'' |
Source code in leafmap/foliumap.py
def add_wms_layer(
self,
url: str,
layers: str,
name: Optional[str] = None,
attribution: Optional[str] = "",
overlay: Optional[bool] = True,
control: Optional[bool] = True,
shown: Optional[bool] = True,
format: Optional[str] = "image/png",
transparent: Optional[bool] = True,
version: Optional[str] = "1.1.1",
styles: Optional[str] = "",
**kwargs,
):
"""Add a WMS layer to the map.
Args:
url (str): The URL of the WMS web service.
layers (str): Comma-separated list of WMS layers to show.
name (str, optional): The layer name to use on the layer control. Defaults to None.
attribution (str, optional): The attribution of the data layer. Defaults to ''.
overlay (bool, optional): Allows overlay. Defaults to True.
control (bool, optional): Adds the layer to the layer control. Defaults to True.
shown (bool, optional): A flag indicating whether the layer should be on by default. Defaults to True.
format (str, optional): WMS image format (use ‘image/png’ for layers with transparency). Defaults to 'image/png'.
transparent (bool, optional): Whether the layer shall allow transparency. Defaults to True.
version (str, optional): Version of the WMS service to use. Defaults to "1.1.1".
styles (str, optional): Comma-separated list of WMS styles. Defaults to "".
"""
try:
folium.raster_layers.WmsTileLayer(
url=url,
layers=layers,
name=name,
attr=attribution,
overlay=overlay,
control=control,
show=shown,
styles=styles,
fmt=format,
transparent=transparent,
version=version,
**kwargs,
).add_to(self)
except Exception as e:
raise Exception(e)
add_wms_legend(self, url)
¶
Add a WMS legend based on an image URL
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
URL of the WMS legend image. Should have this format if using wms legend: {geoserver}/wms?REQUEST=GetLegendGraphic&FORMAT=image/png&LAYER={layer} |
required |
Source code in leafmap/foliumap.py
def add_wms_legend(
self,
url,
):
"""Add a WMS legend based on an image URL
Args:
url (str): URL of the WMS legend image. Should have this format if using wms legend: {geoserver}/wms?REQUEST=GetLegendGraphic&FORMAT=image/png&LAYER={layer}
"""
from branca.element import Figure, MacroElement, Element
# Check if the map is a Folium Map instance
if not isinstance(self, Map):
raise ValueError("The self argument must be an instance of folium.Map.")
# HTML template for the legend
legend_html = f"""
{{% macro html(this, kwargs) %}}
<div id="maplegend" style="position: fixed;
bottom: 50px;
right: 50px;
z-index:9999;
">
<img src="{ url }" alt="legend" style="width: 100%; height: 100%;">
</div>
{{% endmacro %}}
"""
# Create an Element with the HTML and add it to the map
macro = MacroElement()
macro._template = Template(legend_html)
self.get_root().add_child(macro)
add_xy_data(self, in_csv, x='longitude', y='latitude', label=None, layer_name='Marker cluster')
¶
Adds points from a CSV file containing lat/lon information and display data on the map.
Source code in leafmap/foliumap.py
def add_xy_data(
self,
in_csv,
x="longitude",
y="latitude",
label=None,
layer_name="Marker cluster",
):
"""Adds points from a CSV file containing lat/lon information and display data on the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
add_xyz_service(self, provider, **kwargs)
¶
Add a XYZ tile layer to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
provider |
str |
A tile layer name starts with xyz or qms. For example, xyz.OpenTopoMap, |
required |
Exceptions:
Type | Description |
---|---|
ValueError |
The provider is not valid. It must start with xyz or qms. |
Source code in leafmap/foliumap.py
def add_xyz_service(self, provider: str, **kwargs):
"""Add a XYZ tile layer to the map.
Args:
provider (str): A tile layer name starts with xyz or qms. For example, xyz.OpenTopoMap,
Raises:
ValueError: The provider is not valid. It must start with xyz or qms.
"""
import xyzservices.providers as xyz
from xyzservices import TileProvider
if provider.startswith("xyz"):
name = provider[4:]
xyz_provider = xyz.flatten()[name]
url = xyz_provider.build_url()
attribution = xyz_provider.attribution
if attribution.strip() == "":
attribution = " "
self.add_tile_layer(url, name, attribution)
elif provider.startswith("qms"):
name = provider[4:]
qms_provider = TileProvider.from_qms(name)
url = qms_provider.build_url()
attribution = qms_provider.attribution
if attribution.strip() == "":
attribution = " "
self.add_tile_layer(url=url, name=name, attribution=attribution)
else:
raise ValueError(
f"The provider {provider} is not valid. It must start with xyz or qms."
)
basemap_demo(self)
¶
A demo for using leafmap basemaps.
Source code in leafmap/foliumap.py
def basemap_demo(self):
"""A demo for using leafmap basemaps."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
clear_controls(self)
¶
Clears all controls on the map.
Source code in leafmap/foliumap.py
def clear_controls(self):
"""Clears all controls on the map."""
pass
edit_vector(self, data, **kwargs)
¶
Edit a vector layer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
dict | str |
The data to edit. It can be a GeoJSON dictionary or a file path. |
required |
Source code in leafmap/foliumap.py
def edit_vector(self, data: Union[str, dict], **kwargs):
"""Edit a vector layer.
Args:
data (dict | str): The data to edit. It can be a GeoJSON dictionary or a file path.
"""
print("The folium plotting backend does not support this function.")
find_layer(self, name)
¶
Finds layer by name.
Source code in leafmap/foliumap.py
def find_layer(self, name):
"""Finds layer by name."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
find_layer_index(self, name)
¶
Finds layer index by name.
Source code in leafmap/foliumap.py
def find_layer_index(self, name):
"""Finds layer index by name."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
get_layer_names(self)
¶
Gets layer names as a list.
Source code in leafmap/foliumap.py
def get_layer_names(self):
"""Gets layer names as a list."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
get_scale(self)
¶
Returns the approximate pixel scale of the current map view, in meters.
Source code in leafmap/foliumap.py
def get_scale(self):
"""Returns the approximate pixel scale of the current map view, in meters."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
image_overlay(self, url, bounds, name)
¶
Overlays an image from the Internet or locally on the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
http URL or local file path to the image. |
required |
bounds |
tuple |
bounding box of the image in the format of (lower_left(lat, lon), upper_right(lat, lon)), such as ((13, -130), (32, -100)). |
required |
name |
str |
name of the layer to show on the layer control. |
required |
Source code in leafmap/foliumap.py
def image_overlay(self, url: str, bounds: Tuple, name: str):
"""Overlays an image from the Internet or locally on the map.
Args:
url (str): http URL or local file path to the image.
bounds (tuple): bounding box of the image in the format of (lower_left(lat, lon), upper_right(lat, lon)), such as ((13, -130), (32, -100)).
name (str): name of the layer to show on the layer control.
"""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
layer_opacity(self, name, value=1.0)
¶
Changes layer opacity.
Source code in leafmap/foliumap.py
def layer_opacity(self, name, value=1.0):
"""Changes layer opacity."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
oam_search(self, bbox=None, start_date=None, end_date=None, limit=100, info_mode='on_click', layer_args={}, add_image=True, **kwargs)
¶
Search OpenAerialMap for images within a bounding box and time range.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bbox |
list | str |
The bounding box [xmin, ymin, xmax, ymax] to search within. Defaults to None. |
None |
start_date |
str |
The start date to search within, such as "2015-04-20T00:00:00.000Z". Defaults to None. |
None |
end_date |
str |
The end date to search within, such as "2015-04-21T00:00:00.000Z". Defaults to None. |
None |
limit |
int |
The maximum number of results to return. Defaults to 100. |
100 |
info_mode |
str |
The mode to use for the info popup. Can be 'on_hover' or 'on_click'. Defaults to 'on_click'. |
'on_click' |
layer_args |
dict |
The layer arguments for add_gdf() function. Defaults to {}. |
{} |
add_image |
bool |
Whether to add the first 10 images to the map. Defaults to True. |
True |
**kwargs |
Additional keyword arguments to pass to the API. See https://hotosm.github.io/oam-api/ |
{} |
Source code in leafmap/foliumap.py
def oam_search(
self,
bbox: Optional[Union[List, str]] = None,
start_date: Optional[str] = None,
end_date: Optional[str] = None,
limit: Optional[int] = 100,
info_mode: Optional[str] = "on_click",
layer_args: Optional[dict] = {},
add_image: Optional[bool] = True,
**kwargs,
):
"""Search OpenAerialMap for images within a bounding box and time range.
Args:
bbox (list | str, optional): The bounding box [xmin, ymin, xmax, ymax] to search within. Defaults to None.
start_date (str, optional): The start date to search within, such as "2015-04-20T00:00:00.000Z". Defaults to None.
end_date (str, optional): The end date to search within, such as "2015-04-21T00:00:00.000Z". Defaults to None.
limit (int, optional): The maximum number of results to return. Defaults to 100.
info_mode (str, optional): The mode to use for the info popup. Can be 'on_hover' or 'on_click'. Defaults to 'on_click'.
layer_args (dict, optional): The layer arguments for add_gdf() function. Defaults to {}.
add_image (bool, optional): Whether to add the first 10 images to the map. Defaults to True.
**kwargs: Additional keyword arguments to pass to the API. See https://hotosm.github.io/oam-api/
"""
gdf = common.oam_search(
bbox=bbox, start_date=start_date, end_date=end_date, limit=limit, **kwargs
)
if "layer_name" not in layer_args:
layer_args["layer_name"] = "Footprints"
if "style" not in layer_args:
layer_args["style"] = {
# "stroke": True,
"color": "#3388ff",
"weight": 2,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 0,
# "dashArray": "9"
# "clickable": True,
}
if "highlight_function" not in layer_args:
layer_args["highlight_function"] = lambda feat: {
"weight": layer_args["style"]["weight"] + 2,
"fillOpacity": 0,
}
if gdf is not None:
self.add_gdf(gdf, info_mode=info_mode, **layer_args)
setattr(self, "oam_gdf", gdf)
if add_image:
ids = gdf["_id"].tolist()
images = gdf["tms"].tolist()
if len(images) > 5:
print(f"Found {len(images)} images. \nShowing the first 5.")
for index, image in enumerate(images):
if index == 5:
break
self.add_tile_layer(
url=image, name=ids[index], attribution="OpenAerialMap"
)
else:
print("No images found.")
remove_labels(self, **kwargs)
¶
Removes a layer from the map.
Source code in leafmap/foliumap.py
def remove_labels(self, **kwargs):
"""Removes a layer from the map."""
print("The folium plotting backend does not support removing labels.")
save_draw_features(self, out_file, indent=4, **kwargs)
¶
Save the draw features to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
out_file |
str |
The output file path. |
required |
indent |
int |
The indentation level when saving data as a GeoJSON. Defaults to 4. |
4 |
Source code in leafmap/foliumap.py
def save_draw_features(self, out_file: str, indent: Optional[int] = 4, **kwargs):
"""Save the draw features to a file.
Args:
out_file (str): The output file path.
indent (int, optional): The indentation level when saving data as a GeoJSON. Defaults to 4.
"""
print("The folium plotting backend does not support this function.")
set_center(self, lon, lat, zoom=10)
¶
Centers the map view at a given coordinates with the given zoom level.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lon |
float |
The longitude of the center, in degrees. |
required |
lat |
float |
The latitude of the center, in degrees. |
required |
zoom |
int |
The zoom level, from 1 to 24. Defaults to 10. |
10 |
Source code in leafmap/foliumap.py
def set_center(self, lon: float, lat: float, zoom: Optional[int] = 10):
"""Centers the map view at a given coordinates with the given zoom level.
Args:
lon (float): The longitude of the center, in degrees.
lat (float): The latitude of the center, in degrees.
zoom (int, optional): The zoom level, from 1 to 24. Defaults to 10.
"""
self.fit_bounds([[lat, lon], [lat, lon]], max_zoom=zoom)
common.arc_zoom_to_extent(lon, lat, lon, lat)
split_map(self, left_layer='TERRAIN', right_layer='OpenTopoMap', left_args={}, right_args={}, left_array_args={}, right_array_args={}, left_label=None, right_label=None, left_position='bottomleft', right_position='bottomright', **kwargs)
¶
Adds a split-panel map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
left_layer |
str |
The left tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'TERRAIN'. |
'TERRAIN' |
right_layer |
str |
The right tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'OpenTopoMap'. |
'OpenTopoMap' |
left_args |
dict |
The arguments for the left tile layer. Defaults to {}. |
{} |
right_args |
dict |
The arguments for the right tile layer. Defaults to {}. |
{} |
left_array_args |
dict |
The arguments for array_to_image for the left layer. Defaults to {}. |
{} |
right_array_args |
dict |
The arguments for array_to_image for the right layer. Defaults to {}. |
{} |
Source code in leafmap/foliumap.py
def split_map(
self,
left_layer: Optional[str] = "TERRAIN",
right_layer: Optional[str] = "OpenTopoMap",
left_args: Optional[dict] = {},
right_args: Optional[dict] = {},
left_array_args={},
right_array_args={},
left_label: Optional[str] = None,
right_label: Optional[str] = None,
left_position: Optional[str] = "bottomleft",
right_position: Optional[str] = "bottomright",
**kwargs,
):
"""Adds a split-panel map.
Args:
left_layer (str, optional): The left tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'TERRAIN'.
right_layer (str, optional): The right tile layer. Can be a local file path, HTTP URL, or a basemap name. Defaults to 'OpenTopoMap'.
left_args (dict, optional): The arguments for the left tile layer. Defaults to {}.
right_args (dict, optional): The arguments for the right tile layer. Defaults to {}.
left_array_args (dict, optional): The arguments for array_to_image for the left layer. Defaults to {}.
right_array_args (dict, optional): The arguments for array_to_image for the right layer. Defaults to {}.
"""
if "max_zoom" not in left_args:
left_args["max_zoom"] = 30
if "max_native_zoom" not in left_args:
left_args["max_native_zoom"] = 30
if "max_zoom" not in right_args:
right_args["max_zoom"] = 30
if "max_native_zoom" not in right_args:
right_args["max_native_zoom"] = 30
if "layer_name" not in left_args:
left_args["layer_name"] = "Left Layer"
if "layer_name" not in right_args:
right_args["layer_name"] = "Right Layer"
bounds = None
try:
if left_label is not None:
left_name = left_label
else:
left_name = "Left Layer"
if right_label is not None:
right_name = right_label
else:
right_name = "Right Layer"
if isinstance(left_layer, str):
if left_layer in basemaps.keys():
left_layer = basemaps[left_layer]
elif left_layer.startswith("http") and left_layer.endswith(".tif"):
url = common.cog_tile(left_layer, **left_args)
bbox = common.cog_bounds(left_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
left_layer = folium.raster_layers.TileLayer(
tiles=url,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif left_layer.startswith("http") and left_layer.endswith(".json"):
left_tile_url = common.stac_tile(left_layer, **left_args)
bbox = common.stac_bounds(left_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
left_layer = folium.raster_layers.TileLayer(
tiles=left_tile_url,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif os.path.exists(left_layer):
left_layer, left_client = common.get_local_tile_layer(
left_layer,
tile_format="folium",
return_client=True,
**left_args,
)
bounds = common.image_bounds(left_client)
else:
left_layer = folium.raster_layers.TileLayer(
tiles=left_layer,
name=left_name,
attr=" ",
overlay=True,
**left_args,
)
elif isinstance(left_layer, folium.raster_layers.TileLayer) or isinstance(
left_layer, folium.WmsTileLayer
):
pass
elif common.is_array(left_layer):
left_layer = common.array_to_image(left_layer, **left_array_args)
left_layer, _ = common.get_local_tile_layer(
left_layer,
return_client=True,
tile_format="folium",
**left_args,
)
else:
raise ValueError(
f"left_layer must be one of the following: {', '.join(basemaps.keys())} or a string url to a tif file."
)
if isinstance(right_layer, str):
if right_layer in basemaps.keys():
right_layer = basemaps[right_layer]
elif right_layer.startswith("http") and right_layer.endswith(".tif"):
url = common.cog_tile(right_layer, **right_args)
bbox = common.cog_bounds(right_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
right_layer = folium.raster_layers.TileLayer(
tiles=url,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif right_layer.startswith("http") and right_layer.endswith(".json"):
right_tile_url = common.stac_tile(right_layer, **left_args)
bbox = common.stac_bounds(right_layer)
bounds = [(bbox[1], bbox[0]), (bbox[3], bbox[2])]
right_layer = folium.raster_layers.TileLayer(
tiles=right_tile_url,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif os.path.exists(right_layer):
right_layer, right_client = common.get_local_tile_layer(
right_layer,
tile_format="folium",
return_client=True,
**right_args,
)
bounds = common.image_bounds(right_client)
else:
right_layer = folium.raster_layers.TileLayer(
tiles=right_layer,
name=right_name,
attr=" ",
overlay=True,
**right_args,
)
elif isinstance(right_layer, folium.raster_layers.TileLayer) or isinstance(
left_layer, folium.WmsTileLayer
):
pass
elif common.is_array(right_layer):
right_layer = common.array_to_image(right_layer, **right_array_args)
right_layer, _ = common.get_local_tile_layer(
right_layer,
return_client=True,
tile_format="folium",
**right_args,
)
else:
raise ValueError(
f"right_layer must be one of the following: {', '.join(basemaps.keys())} or a string url to a tif file."
)
control = folium.plugins.SideBySideLayers(
layer_left=left_layer, layer_right=right_layer
)
left_layer.add_to(self)
right_layer.add_to(self)
control.add_to(self)
if left_label is not None:
if "<" not in left_label:
left_label = f"<h4>{left_label}</h4>"
self.add_html(left_label, position=left_position)
if right_label is not None:
if "<" not in right_label:
right_label = f"<h4>{right_label}</h4>"
self.add_html(right_label, position=right_position)
if bounds is not None:
self.fit_bounds(bounds)
except Exception as e:
print("The provided layers are invalid!")
raise ValueError(e)
st_draw_features(self, st_component)
¶
Get the draw features of the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
st_component |
st_folium |
The streamlit component. |
required |
Returns:
Type | Description |
---|---|
list |
The draw features of the map. |
Source code in leafmap/foliumap.py
def st_draw_features(self, st_component):
"""Get the draw features of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
list: The draw features of the map.
"""
return st_component["all_drawings"]
st_fit_bounds(self)
¶
Fit the map to the bounds of the map.
Returns:
Type | Description |
---|---|
folium.Map |
The map. |
Source code in leafmap/foliumap.py
def st_fit_bounds(self):
"""Fit the map to the bounds of the map.
Returns:
folium.Map: The map.
"""
try:
import streamlit as st # pylint: disable=E0401
if "map_bounds" in st.session_state:
bounds = st.session_state["map_bounds"]
self.fit_bounds(bounds)
except Exception as e:
raise Exception(e)
st_last_click(self, st_component)
¶
Get the last click feature of the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
st_component |
st_folium |
The streamlit component. |
required |
Returns:
Type | Description |
---|---|
str |
The last click of the map. |
Source code in leafmap/foliumap.py
def st_last_click(self, st_component):
"""Get the last click feature of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
str: The last click of the map.
"""
coords = st_component["last_clicked"]
return (coords["lat"], coords["lng"])
st_last_draw(self, st_component)
¶
Get the last draw feature of the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
st_component |
st_folium |
The streamlit component. |
required |
Returns:
Type | Description |
---|---|
str |
The last draw of the map. |
Source code in leafmap/foliumap.py
def st_last_draw(self, st_component):
"""Get the last draw feature of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
str: The last draw of the map.
"""
return st_component["last_active_drawing"]
st_map_bounds(self, st_component)
¶
Get the bounds of the map in the format of (miny, minx, maxy, maxx).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
st_component |
st_folium |
The streamlit component. |
required |
Returns:
Type | Description |
---|---|
tuple |
The bounds of the map. |
Source code in leafmap/foliumap.py
def st_map_bounds(self, st_component) -> Tuple:
"""Get the bounds of the map in the format of (miny, minx, maxy, maxx).
Args:
st_component (st_folium): The streamlit component.
Returns:
tuple: The bounds of the map.
"""
bounds = st_component["bounds"]
south = bounds["_southWest"]["lat"]
west = bounds["_southWest"]["lng"]
north = bounds["_northEast"]["lat"]
east = bounds["_northEast"]["lng"]
bounds = [[south, west], [north, east]]
return bounds
st_map_center(self, st_component)
¶
Get the center of the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
st_component |
st_folium |
The streamlit component. |
required |
Returns:
Type | Description |
---|---|
tuple |
The center of the map. |
Source code in leafmap/foliumap.py
def st_map_center(self, st_component) -> Tuple:
"""Get the center of the map.
Args:
st_component (st_folium): The streamlit component.
Returns:
tuple: The center of the map.
"""
bounds = st_component["bounds"]
west = bounds["_southWest"]["lng"]
south = bounds["_southWest"]["lat"]
east = bounds["_northEast"]["lng"]
north = bounds["_northEast"]["lat"]
return (south + (north - south) / 2, west + (east - west) / 2)
static_map(self, width=950, height=600, read_only=False, out_file=None, **kwargs)
¶
Display a folium static map in a Jupyter Notebook.
Args m (folium.Map): A folium map. width (int, optional): Width of the map. Defaults to 950. height (int, optional): Height of the map. Defaults to 600. read_only (bool, optional): Whether to hide the side panel to disable map customization. Defaults to False. out_file (str, optional): Output html file path. Defaults to None.
Source code in leafmap/foliumap.py
def static_map(
self,
width: Optional[int] = 950,
height: Optional[int] = 600,
read_only: Optional[bool] = False,
out_file: Optional[str] = None,
**kwargs,
):
"""Display a folium static map in a Jupyter Notebook.
Args
m (folium.Map): A folium map.
width (int, optional): Width of the map. Defaults to 950.
height (int, optional): Height of the map. Defaults to 600.
read_only (bool, optional): Whether to hide the side panel to disable map customization. Defaults to False.
out_file (str, optional): Output html file path. Defaults to None.
"""
if isinstance(self, folium.Map):
if out_file is None:
out_file = "./cache/" + "folium_" + common.random_string(3) + ".html"
out_dir = os.path.abspath(os.path.dirname(out_file))
if not os.path.exists(out_dir):
os.makedirs(out_dir)
self.to_html(out_file)
common.display_html(out_file, width=width, height=height)
else:
raise TypeError("The provided map is not a folium map.")
to_gradio(self, width='100%', height='500px', **kwargs)
¶
Converts the map to an HTML string that can be used in Gradio. Removes unsupported elements, such as attribution and any code blocks containing functions. See https://github.com/gradio-app/gradio/issues/3190
Parameters:
Name | Type | Description | Default |
---|---|---|---|
width |
str |
The width of the map. Defaults to '100%'. |
'100%' |
height |
str |
The height of the map. Defaults to '500px'. |
'500px' |
Returns:
Type | Description |
---|---|
str |
The HTML string to use in Gradio. |
Source code in leafmap/foliumap.py
def to_gradio(
self, width: Optional[str] = "100%", height: Optional[str] = "500px", **kwargs
):
"""Converts the map to an HTML string that can be used in Gradio. Removes unsupported elements, such as
attribution and any code blocks containing functions. See https://github.com/gradio-app/gradio/issues/3190
Args:
width (str, optional): The width of the map. Defaults to '100%'.
height (str, optional): The height of the map. Defaults to '500px'.
Returns:
str: The HTML string to use in Gradio.
"""
if isinstance(width, int):
width = f"{width}px"
if isinstance(height, int):
height = f"{height}px"
html = self.to_html()
lines = html.split("\n")
output = []
skipped_lines = []
for index, line in enumerate(lines):
if index in skipped_lines:
continue
if line.lstrip().startswith('{"attribution":'):
continue
elif "on(L.Draw.Event.CREATED, function(e)" in line:
for i in range(14):
skipped_lines.append(index + i)
elif "L.Control.geocoder" in line:
for i in range(5):
skipped_lines.append(index + i)
elif "function(e)" in line:
print(
f"Warning: The folium plotting backend does not support functions in code blocks. Please delete line {index + 1}."
)
else:
output.append(line + "\n")
return f"""<iframe style="width: {width}; height: {height}" name="result" allow="midi; geolocation; microphone; camera;
display-capture; encrypted-media;" sandbox="allow-modals allow-forms
allow-scripts allow-same-origin allow-popups
allow-top-navigation-by-user-activation allow-downloads" allowfullscreen=""
allowpaymentrequest="" frameborder="0" srcdoc='{"".join(output)}'></iframe>"""
to_html(self, outfile=None, **kwargs)
¶
Exports a map as an HTML file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
outfile |
str |
File path to the output HTML. Defaults to None. |
None |
Exceptions:
Type | Description |
---|---|
ValueError |
If it is an invalid HTML file. |
Returns:
Type | Description |
---|---|
str |
A string containing the HTML code. |
Source code in leafmap/foliumap.py
def to_html(self, outfile: Optional[str] = None, **kwargs) -> str:
"""Exports a map as an HTML file.
Args:
outfile (str, optional): File path to the output HTML. Defaults to None.
Raises:
ValueError: If it is an invalid HTML file.
Returns:
str: A string containing the HTML code.
"""
if self.options["layersControl"]:
self.add_layer_control()
if outfile is not None:
if not outfile.endswith(".html"):
raise ValueError("The output file extension must be html.")
outfile = os.path.abspath(outfile)
out_dir = os.path.dirname(outfile)
if not os.path.exists(out_dir):
os.makedirs(out_dir)
self.save(outfile, **kwargs)
else:
outfile = os.path.abspath(common.random_string() + ".html")
self.save(outfile, **kwargs)
out_html = ""
with open(outfile) as f:
lines = f.readlines()
out_html = "".join(lines)
os.remove(outfile)
return out_html
to_image(self, outfile=None, monitor=1)
¶
Saves the map as a PNG or JPG image.
Source code in leafmap/foliumap.py
def to_image(self, outfile=None, monitor=1):
"""Saves the map as a PNG or JPG image."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
to_streamlit(self, width=None, height=600, scrolling=False, add_layer_control=True, bidirectional=False, **kwargs)
¶
Renders folium.Figure
or folium.Map
in a Streamlit app. This method is a static Streamlit Component, meaning, no information is passed back from Leaflet on browser interaction.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
width |
int |
Width of the map. Defaults to None. |
None |
height |
int |
Height of the map. Defaults to 600. |
600 |
scrolling |
bool |
Whether to allow the map to scroll. Defaults to False. |
False |
add_layer_control |
bool |
Whether to add the layer control. Defaults to True. |
True |
bidirectional |
bool |
Whether to add bidirectional functionality to the map. The streamlit-folium package is required to use the bidirectional functionality. Defaults to False. |
False |
Exceptions:
Type | Description |
---|---|
ImportError |
If streamlit is not installed. |
Returns:
Type | Description |
---|---|
streamlit.components |
components.html object. |
Source code in leafmap/foliumap.py
def to_streamlit(
self,
width: Optional[int] = None,
height: Optional[int] = 600,
scrolling: Optional[bool] = False,
add_layer_control: Optional[bool] = True,
bidirectional: Optional[bool] = False,
**kwargs,
):
"""Renders `folium.Figure` or `folium.Map` in a Streamlit app. This method is a static Streamlit Component, meaning, no information is passed back from Leaflet on browser interaction.
Args:
width (int, optional): Width of the map. Defaults to None.
height (int, optional): Height of the map. Defaults to 600.
scrolling (bool, optional): Whether to allow the map to scroll. Defaults to False.
add_layer_control (bool, optional): Whether to add the layer control. Defaults to True.
bidirectional (bool, optional): Whether to add bidirectional functionality to the map. The streamlit-folium package is required to use the bidirectional functionality. Defaults to False.
Raises:
ImportError: If streamlit is not installed.
Returns:
streamlit.components: components.html object.
"""
try:
import streamlit.components.v1 as components # pylint: disable=E0401
if add_layer_control:
self.add_layer_control()
if bidirectional:
from streamlit_folium import st_folium # pylint: disable=E0401
output = st_folium(self, width=width, height=height)
return output
else:
# if responsive:
# make_map_responsive = """
# <style>
# [title~="st.iframe"] { width: 100%}
# </style>
# """
# st.markdown(make_map_responsive, unsafe_allow_html=True)
return components.html(
self.to_html(), width=width, height=height, scrolling=scrolling
)
except Exception as e:
raise Exception(e)
toolbar_reset(self)
¶
Reset the toolbar so that no tool is selected.
Source code in leafmap/foliumap.py
def toolbar_reset(self):
"""Reset the toolbar so that no tool is selected."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
user_roi_bounds(self, decimals=4)
¶
Get the bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
decimals |
int |
The number of decimals to round the coordinates to. Defaults to 4. |
4 |
Returns:
Type | Description |
---|---|
list |
The bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy). |
Source code in leafmap/foliumap.py
def user_roi_bounds(self, decimals: Optional[int] = 4) -> List:
"""Get the bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy).
Args:
decimals (int, optional): The number of decimals to round the coordinates to. Defaults to 4.
Returns:
list: The bounds of the user drawn ROI as a tuple of (minx, miny, maxx, maxy).
"""
print(f"The folium plotting backend does not support this function.")
video_overlay(self, url, bounds, name)
¶
Overlays a video from the Internet on the map.
Source code in leafmap/foliumap.py
def video_overlay(self, url, bounds, name):
"""Overlays a video from the Internet on the map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
zoom_to_bounds(self, bounds)
¶
Zooms to a bounding box in the form of [minx, miny, maxx, maxy].
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bounds |
list | tuple |
A list/tuple containing minx, miny, maxx, maxy values for the bounds. |
required |
Source code in leafmap/foliumap.py
def zoom_to_bounds(
self, bounds: Union[List[float], Tuple[float, float, float, float]]
):
"""Zooms to a bounding box in the form of [minx, miny, maxx, maxy].
Args:
bounds (list | tuple): A list/tuple containing minx, miny, maxx, maxy values for the bounds.
"""
# The folium fit_bounds method takes lat/lon bounds in the form [[south, west], [north, east]].
self.fit_bounds([[bounds[1], bounds[0]], [bounds[3], bounds[2]]])
zoom_to_gdf(self, gdf)
¶
Zooms to the bounding box of a GeoPandas GeoDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gdf |
GeoDataFrame |
A GeoPandas GeoDataFrame. |
required |
Source code in leafmap/foliumap.py
def zoom_to_gdf(self, gdf):
"""Zooms to the bounding box of a GeoPandas GeoDataFrame.
Args:
gdf (GeoDataFrame): A GeoPandas GeoDataFrame.
"""
bounds = gdf.total_bounds
self.zoom_to_bounds(bounds)
PMTilesLayer (JSCSSMixin, Layer)
¶
Creates a PMTilesLayer object for displaying PMTiles. Adapted from https://github.com/jtmiclat/folium-pmtiles. Credits to @jtmiclat.
Source code in leafmap/foliumap.py
class PMTilesLayer(JSCSSMixin, Layer):
"""Creates a PMTilesLayer object for displaying PMTiles.
Adapted from https://github.com/jtmiclat/folium-pmtiles. Credits to @jtmiclat.
"""
_template = Template(
"""
{% macro script(this, kwargs) -%}
var protocol = new pmtiles.Protocol();
maplibregl.addProtocol("pmtiles", protocol.tile);
// see: https://github.com/maplibre/maplibre-gl-leaflet/issues/19
{{ this._parent.get_name() }}.createPane('overlay_{{ this.get_name() }}');
{{ this._parent.get_name() }}.getPane('overlay_{{ this.get_name() }}').style.zIndex = 650;
{{ this._parent.get_name() }}.getPane('overlay_{{ this.get_name() }}').style.pointerEvents = 'none';
var {{ this.get_name() }} = L.maplibreGL({
pane: 'overlay_{{ this.get_name() }}',
style: {{ this.style|tojson}},
interactive: true,
}).addTo({{ this._parent.get_name() }});
{%- endmacro %}
"""
)
default_css = [
("maplibre_css", "https://unpkg.com/maplibre-gl@2.4.0/dist/maplibre-gl.css")
]
default_js = [
("pmtiles", "https://unpkg.com/pmtiles@2.7.1/dist/index.js"),
("maplibre-lib", "https://unpkg.com/maplibre-gl@2.2.1/dist/maplibre-gl.js"),
(
"maplibre-leaflet",
"https://unpkg.com/@maplibre/maplibre-gl-leaflet@0.0.19/leaflet-maplibre-gl.js",
),
]
def __init__(
self,
url,
style=None,
name=None,
tooltip=True,
overlay=True,
show=True,
control=True,
**kwargs,
) -> None:
"""
Initializes a PMTilesLayer object.
Args:
url (str): The URL of the PMTiles file.
style (dict, optional): The style to apply to the layer. Defaults to None.
name (str, optional): The name of the layer. Defaults to None.
tooltip (bool, optional): Whether to show a tooltip. Defaults to True.
overlay (bool, optional): Whether the layer should be added as an overlay. Defaults to True.
show (bool, optional): Whether the layer should be shown initially. Defaults to True.
control (bool, optional): Whether to include the layer in the layer control. Defaults to True.
**kwargs: Additional keyword arguments to pass to the Layer constructor.
Returns:
None
"""
self.layer_name = name if name else "PMTilesVector"
super().__init__(
name=self.layer_name, overlay=overlay, show=show, control=control, **kwargs
)
self.url = url
self._name = "PMTilesVector"
if tooltip:
self.add_child(PMTilesMapLibreTooltip())
if style is not None:
self.style = style
else:
self.style = {}
__init__(self, url, style=None, name=None, tooltip=True, overlay=True, show=True, control=True, **kwargs)
special
¶
Initializes a PMTilesLayer object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str |
The URL of the PMTiles file. |
required |
style |
dict |
The style to apply to the layer. Defaults to None. |
None |
name |
str |
The name of the layer. Defaults to None. |
None |
tooltip |
bool |
Whether to show a tooltip. Defaults to True. |
True |
overlay |
bool |
Whether the layer should be added as an overlay. Defaults to True. |
True |
show |
bool |
Whether the layer should be shown initially. Defaults to True. |
True |
control |
bool |
Whether to include the layer in the layer control. Defaults to True. |
True |
**kwargs |
Additional keyword arguments to pass to the Layer constructor. |
{} |
Returns:
Type | Description |
---|---|
None |
None |
Source code in leafmap/foliumap.py
def __init__(
self,
url,
style=None,
name=None,
tooltip=True,
overlay=True,
show=True,
control=True,
**kwargs,
) -> None:
"""
Initializes a PMTilesLayer object.
Args:
url (str): The URL of the PMTiles file.
style (dict, optional): The style to apply to the layer. Defaults to None.
name (str, optional): The name of the layer. Defaults to None.
tooltip (bool, optional): Whether to show a tooltip. Defaults to True.
overlay (bool, optional): Whether the layer should be added as an overlay. Defaults to True.
show (bool, optional): Whether the layer should be shown initially. Defaults to True.
control (bool, optional): Whether to include the layer in the layer control. Defaults to True.
**kwargs: Additional keyword arguments to pass to the Layer constructor.
Returns:
None
"""
self.layer_name = name if name else "PMTilesVector"
super().__init__(
name=self.layer_name, overlay=overlay, show=show, control=control, **kwargs
)
self.url = url
self._name = "PMTilesVector"
if tooltip:
self.add_child(PMTilesMapLibreTooltip())
if style is not None:
self.style = style
else:
self.style = {}
PMTilesMapLibreTooltip (JSCSSMixin, MacroElement)
¶
Creates a PMTilesMapLibreTooltip object for displaying tooltips. Adapted from https://github.com/jtmiclat/folium-pmtiles. Credits to @jtmiclat.
Source code in leafmap/foliumap.py
class PMTilesMapLibreTooltip(JSCSSMixin, MacroElement):
"""Creates a PMTilesMapLibreTooltip object for displaying tooltips.
Adapted from https://github.com/jtmiclat/folium-pmtiles. Credits to @jtmiclat.
"""
_template = Template(
"""
{% macro header(this, kwargs) %}
<style>
.maplibregl-popup {
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
z-index: 651;
}
.feature-row{
margin-bottom: 0.5em;
&:not(:last-of-type) {
border-bottom: 1px solid black;
}
}
</style>
{% endmacro %}
{% macro script(this, kwargs) -%}
var {{ this.get_name() }} = {{ this._parent.get_name() }}.getMaplibreMap();
const popup_{{ this.get_name() }} = new maplibregl.Popup({
closeButton: false,
closeOnClick: false
});
function setTooltipForPMTilesMapLibreLayer_{{ this.get_name() }}(maplibreLayer) {
var mlMap = maplibreLayer.getMaplibreMap();
var popup = popup_{{ this.get_name() }};
mlMap.on('mousemove', (e) => {
mlMap.getCanvas().style.cursor = 'pointer';
const { x, y } = e.point;
const r = 2; // radius around the point
const features = mlMap.queryRenderedFeatures([
[x - r, y - r],
[x + r, y + r],
]);
const {lng, lat} = e.lngLat;
const coordinates = [lng, lat]
const html = features.map(f=>`
<div class="feature-row">
<span>
<strong>${f.layer['source-layer']}</strong>
<span style="fontSize: 0.8em" }> (${f.geometry.type})</span>
</span>
<table>
${Object.entries(f.properties).map(([key, value]) =>`<tr><td>${key}</td><td style="text-align: right">${value}</td></tr>`).join("")}
</table>
</div>
`).join("")
if(features.length){
popup.setLngLat(e.lngLat).setHTML(html).addTo(mlMap);
} else {
popup.remove();
}
});
mlMap.on('mouseleave', () => {popup.remove();});
}
// maplibre map object
{{ this.get_name() }}.on("load", (e) => {
setTooltipForPMTilesMapLibreLayer_{{ this.get_name() }}({{ this._parent.get_name() }});
})
// leaflet map object
{{ this._parent._parent.get_name() }}.on("layeradd", (e) => {
setTooltipForPMTilesMapLibreLayer_{{ this.get_name() }}({{ this._parent.get_name() }});
});
{%- endmacro %}
"""
)
def __init__(self, name=None, **kwargs):
# super().__init__(name=name if name else "PMTilesTooltip", **kwargs)
super().__init__(**kwargs)
SideBySideLayers (JSCSSMixin, Layer)
¶
Creates a SideBySideLayers that takes two Layers and adds a sliding control with the leaflet-side-by-side plugin. Uses the Leaflet leaflet-side-by-side plugin https://github.com/digidem/leaflet-side-by-side. Adopted from https://github.com/python-visualization/folium/pull/1292/files. Parameters
Layer.
The left Layer within the side by side control. Must be created and added to the map before being passed to this class.
Layer.
The right Layer within the side by side control. Must be created and added to the map before being passed to this class.
Examples¶
sidebyside = SideBySideLayers(layer_left, layer_right) sidebyside.add_to(m)
Source code in leafmap/foliumap.py
class SideBySideLayers(JSCSSMixin, Layer):
"""
Creates a SideBySideLayers that takes two Layers and adds a sliding
control with the leaflet-side-by-side plugin.
Uses the Leaflet leaflet-side-by-side plugin https://github.com/digidem/leaflet-side-by-side.
Adopted from https://github.com/python-visualization/folium/pull/1292/files.
Parameters
----------
layer_left: Layer.
The left Layer within the side by side control.
Must be created and added to the map before being passed to this class.
layer_right: Layer.
The right Layer within the side by side control.
Must be created and added to the map before being passed to this class.
Examples
--------
>>> sidebyside = SideBySideLayers(layer_left, layer_right)
>>> sidebyside.add_to(m)
"""
_template = Template(
"""
{% macro script(this, kwargs) %}
var {{ this.get_name() }} = L.control.sideBySide(
{{ this.layer_left.get_name() }}, {{ this.layer_right.get_name() }}
).addTo({{ this._parent.get_name() }});
{% endmacro %}
"""
)
default_js = [
(
"leaflet.sidebyside",
"https://cdn.jsdelivr.net/gh/digidem/leaflet-side-by-side@gh-pages/leaflet-side-by-side.min.js",
),
]
def __init__(self, layer_left, layer_right):
super().__init__(control=False)
self._name = "SideBySideLayers"
self.layer_left = layer_left
self.layer_right = layer_right
SplitControl (Layer)
¶
Creates a SplitControl that takes two Layers and adds a sliding control with the leaflet-side-by-side plugin. Uses the Leaflet leaflet-side-by-side plugin https://github.com/digidem/leaflet-side-by-side Parameters. The source code is adapted from https://github.com/python-visualization/folium/pull/1292
Layer.
The left Layer within the side by side control. Must be created and added to the map before being passed to this class.
Layer.
The left Layer within the side by side control. Must be created and added to the map before being passed to this class.
name : string, default None The name of the Layer, as it will appear in LayerControls. overlay : bool, default True Adds the layer as an optional overlay (True) or the base layer (False). control : bool, default True Whether the Layer will be included in LayerControls.
bool, default True
Whether the layer will be shown on opening (only for overlays).
Examples¶
sidebyside = SideBySideLayers(layer_left, layer_right) sidebyside.add_to(m)
Source code in leafmap/foliumap.py
class SplitControl(Layer):
"""
Creates a SplitControl that takes two Layers and adds a sliding control with the leaflet-side-by-side plugin.
Uses the Leaflet leaflet-side-by-side plugin https://github.com/digidem/leaflet-side-by-side Parameters.
The source code is adapted from https://github.com/python-visualization/folium/pull/1292
----------
layer_left: Layer.
The left Layer within the side by side control.
Must be created and added to the map before being passed to this class.
layer_right: Layer.
The left Layer within the side by side control.
Must be created and added to the map before being passed to this class.
name : string, default None
The name of the Layer, as it will appear in LayerControls.
overlay : bool, default True
Adds the layer as an optional overlay (True) or the base layer (False).
control : bool, default True
Whether the Layer will be included in LayerControls.
show: bool, default True
Whether the layer will be shown on opening (only for overlays).
Examples
--------
>>> sidebyside = SideBySideLayers(layer_left, layer_right)
>>> sidebyside.add_to(m)
"""
_template = Template(
"""
{% macro script(this, kwargs) %}
var {{ this.get_name() }} = L.control.sideBySide(
{{ this.layer_left.get_name() }}, {{ this.layer_right.get_name() }}
).addTo({{ this._parent.get_name() }});
{% endmacro %}
"""
)
def __init__(
self, layer_left, layer_right, name=None, overlay=True, control=True, show=True
):
super(SplitControl, self).__init__(
name=name, overlay=overlay, control=control, show=show
)
self._name = "SplitControl"
self.layer_left = layer_left
self.layer_right = layer_right
def render(self, **kwargs):
super(SplitControl, self).render()
figure = self.get_root()
assert isinstance(figure, Figure), (
"You cannot render this Element " "if it is not in a Figure."
)
figure.header.add_child(
JavascriptLink(
"https://raw.githack.com/digidem/leaflet-side-by-side/gh-pages/leaflet-side-by-side.js"
), # noqa
name="leaflet.sidebyside",
)
render(self, **kwargs)
¶
Renders the HTML representation of the element.
Source code in leafmap/foliumap.py
def render(self, **kwargs):
super(SplitControl, self).render()
figure = self.get_root()
assert isinstance(figure, Figure), (
"You cannot render this Element " "if it is not in a Figure."
)
figure.header.add_child(
JavascriptLink(
"https://raw.githack.com/digidem/leaflet-side-by-side/gh-pages/leaflet-side-by-side.js"
), # noqa
name="leaflet.sidebyside",
)
geojson_layer(in_geojson, layer_name='Untitled', encoding='utf-8', info_mode='on_hover', **kwargs)
¶
Adds a GeoJSON file to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_geojson |
str |
The input file path to the GeoJSON. |
required |
layer_name |
str |
The layer name to be used. Defaults to "Untitled". |
'Untitled' |
encoding |
str |
The encoding of the GeoJSON file. Defaults to "utf-8". |
'utf-8' |
info_mode |
str |
Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover". |
'on_hover' |
Exceptions:
Type | Description |
---|---|
FileNotFoundError |
The provided GeoJSON file could not be found. |
Source code in leafmap/foliumap.py
def geojson_layer(
in_geojson: str,
layer_name: Optional[str] = "Untitled",
encoding: Optional[str] = "utf-8",
info_mode: Optional[str] = "on_hover",
**kwargs,
):
"""Adds a GeoJSON file to the map.
Args:
in_geojson (str): The input file path to the GeoJSON.
layer_name (str, optional): The layer name to be used. Defaults to "Untitled".
encoding (str, optional): The encoding of the GeoJSON file. Defaults to "utf-8".
info_mode (str, optional): Displays the attributes by either on_hover or on_click. Any value other than "on_hover" or "on_click" will be treated as None. Defaults to "on_hover".
Raises:
FileNotFoundError: The provided GeoJSON file could not be found.
"""
import json
import requests
import random
try:
if isinstance(in_geojson, str):
if in_geojson.startswith("http"):
data = requests.get(in_geojson).json()
else:
in_geojson = os.path.abspath(in_geojson)
if not os.path.exists(in_geojson):
raise FileNotFoundError(
"The provided GeoJSON file could not be found."
)
with open(in_geojson, encoding=encoding) as f:
data = json.load(f)
elif isinstance(in_geojson, dict):
data = in_geojson
else:
raise TypeError("The input geojson must be a type of str or dict.")
except Exception as e:
raise Exception(e)
# interchangeable parameters between ipyleaflet and folium.
if "style_function" not in kwargs:
if "style" in kwargs:
style_dict = kwargs["style"]
if isinstance(kwargs["style"], dict) and len(kwargs["style"]) > 0:
kwargs["style_function"] = lambda x: style_dict
kwargs.pop("style")
else:
style_dict = {
# "stroke": True,
"color": "#000000",
"weight": 1,
"opacity": 1,
# "fill": True,
# "fillColor": "#ffffff",
"fillOpacity": 0.1,
# "dashArray": "9"
# "clickable": True,
}
kwargs["style_function"] = lambda x: style_dict
if "style_callback" in kwargs:
kwargs.pop("style_callback")
if "hover_style" in kwargs:
kwargs.pop("hover_style")
if "fill_colors" in kwargs:
fill_colors = kwargs["fill_colors"]
def random_color(feature):
style_dict["fillColor"] = random.choice(fill_colors)
return style_dict
kwargs["style_function"] = random_color
kwargs.pop("fill_colors")
if "highlight_function" not in kwargs:
kwargs["highlight_function"] = lambda feat: {
"weight": 2,
"fillOpacity": 0.5,
}
tooltip = None
popup = None
if info_mode is not None:
props = list(data["features"][0]["properties"].keys())
if info_mode == "on_hover":
tooltip = folium.GeoJsonTooltip(fields=props)
elif info_mode == "on_click":
popup = folium.GeoJsonPopup(fields=props)
geojson = folium.GeoJson(
data=data, name=layer_name, tooltip=tooltip, popup=popup, **kwargs
)
return geojson
linked_maps(rows=2, cols=2, height='400px', layers=[], labels=[], label_position='topright', **kwargs)
¶
Create linked maps of XYZ tile layers.
Source code in leafmap/foliumap.py
def linked_maps(
rows=2,
cols=2,
height="400px",
layers=[],
labels=[],
label_position="topright",
**kwargs,
):
"""Create linked maps of XYZ tile layers."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
split_map(left_layer='ROADMAP', right_layer='HYBRID', left_label=None, right_label=None, label_position='bottom', **kwargs)
¶
Creates a split-panel map.
Source code in leafmap/foliumap.py
def split_map(
left_layer="ROADMAP",
right_layer="HYBRID",
left_label=None,
right_label=None,
label_position="bottom",
**kwargs,
):
"""Creates a split-panel map."""
raise NotImplementedError(
"The folium plotting backend does not support this function. Use the ipyleaflet plotting backend instead."
)
st_map_center(lat, lon)
¶
Returns the map center coordinates for a given latitude and longitude. If the system variable 'map_center' exists, it is used. Otherwise, the default is returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lat |
float |
Latitude. |
required |
lon |
float |
Longitude. |
required |
Exceptions:
Type | Description |
---|---|
Exception |
If streamlit is not installed. |
Returns:
Type | Description |
---|---|
list |
The map center coordinates. |
Source code in leafmap/foliumap.py
def st_map_center(lat: float, lon: float):
"""Returns the map center coordinates for a given latitude and longitude. If the system variable 'map_center' exists, it is used. Otherwise, the default is returned.
Args:
lat (float): Latitude.
lon (float): Longitude.
Raises:
Exception: If streamlit is not installed.
Returns:
list: The map center coordinates.
"""
try:
import streamlit as st
if "map_center" in st.session_state:
return st.session_state["map_center"]
else:
return [lat, lon]
except ImportError:
raise Exception("Streamlit is not installed.")
st_save_bounds(st_component)
¶
Saves the map bounds to the session state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
map |
folium.folium.Map |
The map to save the bounds from. |
required |
Source code in leafmap/foliumap.py
def st_save_bounds(st_component: Map):
"""Saves the map bounds to the session state.
Args:
map (folium.folium.Map): The map to save the bounds from.
"""
try:
import streamlit as st
if st_component is not None:
bounds = st_component["bounds"]
south = bounds["_southWest"]["lat"]
west = bounds["_southWest"]["lng"]
north = bounds["_northEast"]["lat"]
east = bounds["_northEast"]["lng"]
bounds = [[south, west], [north, east]]
center = [south + (north - south) / 2, west + (east - west) / 2]
st.session_state["map_bounds"] = bounds
st.session_state["map_center"] = center
except Exception as e:
raise Exception(e)