This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "parseDuration", | |
"version": "0.0.1", | |
"main": "./parseDuration.es5.js" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from owslib.wms import WebMapService | |
import json | |
def slugify_title(str): | |
return str.lower().strip().replace(" ", "-") | |
def generate_layer_dict(list_layer_metadata): | |
items = [] |