Intake Catalog Browser
Data Sources
{% for source in sources %}
{{ source.name }}
{{ source.description.description }}
Returns: {{ source.description.container }}
Parameters:
{% for par in source.description.user_parameters %}
- {{ par.name }} ({{ par.type }}): {{ par.description }}
default value = {{ par.default }}
{% if par.allowed %}
; allowed = {% for v in par.allowed %}{{ v }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}