Web Tile Layers =============== Generating PNG web tiles ------------------------ To generate web tiles, based on index tiles (see SFINCS module), you can use the ``tiling.make_png_tiles()`` function: .. code-block:: console for dataset in bdb.dataset: print(dataset.name) Generating topography tiles --------------------------- To generate topography tiles, used for building flood maps, you can use the ``tiling.make_topobathy_tiles()`` function: .. code-block:: console for dataset in bdb.dataset: print(dataset.name) Classes ------- .. automodule:: cht.tiling :members: make_png_tiles, make_topobathy_tiles