44 |
45 | -------------------------------------------------------------------------------- /tipg/templates/item.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

Collection Item: {{ response.id }}

22 | 23 |
24 |
25 |

Properties

26 |
    27 |
  • ID: {{ response.id }}
  • 28 | {% for key, value in response.properties.items() %} 29 |
  • {{ key }}: {{ value }}
  • 30 | {% endfor %} 31 |
32 |
33 |
34 |
Loading...
35 |
36 |
37 | 38 | 100 | 101 | {% include "footer.html" %} 102 | -------------------------------------------------------------------------------- /tipg/templates/items.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | 3 | {% set show_prev_link = false %} 4 | {% set show_next_link = false %} 5 | {% if params %} 6 | {% set urlq = url + '?' + params + '&' %} 7 | {% else %} 8 | {% set urlq = url + '?' %} 9 | {% endif %} 10 | 11 | 12 | 24 | 25 |

Collection Items: {{ response.title or response.id }}

26 | 27 |
Loading...
28 | 29 |

30 | Number of matching items: {{ response.numberMatched }}
31 | Number of returned items: {{ response.numberReturned }}
32 | Page: of
33 |

34 | 35 |
36 | {% for link in response.links %} 37 | {% if link.rel == 'prev' %} 38 | 39 | {% endif %} 40 | {% endfor %} 41 |
42 | 49 |
50 | {% for link in response.links %} 51 | {% if link.rel == 'next' %} 52 | 53 | {% endif %} 54 | {% endfor %} 55 |
56 |
57 | {% if response.features is defined and response.features|length > 0 %} 58 | 59 | 60 | 61 | {% for key, value in response.features.0.properties.items() %} 62 | 63 | {% endfor %} 64 | 65 | 66 | {% for feature in response.features %} 67 | 68 | 69 | {% for key, value in feature.properties.items() %} 70 | 71 | {% endfor %} 72 | 73 | {% endfor %} 74 | 75 |
ID{{ key }}
{{ feature.id }}{{ value }}
76 | {% endif %} 77 |
78 | 79 | 148 | 149 | {% include "footer.html" %} 150 | -------------------------------------------------------------------------------- /tipg/templates/landing.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

{{ response.title }}

22 |

23 | {{ response.description }} 24 |

25 | 26 |

Links

27 |
    28 | {% for link in response.links %} 29 |
  • {{ link.title }}
  • 30 | {% endfor %} 31 |
32 | 33 | {% include "footer.html" %} 34 | -------------------------------------------------------------------------------- /tipg/templates/queryables.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

Collection: {{ response.title or response.id }}

22 | 23 |
24 |
25 |

Queryables

26 |
    27 | {% for k,v in response.properties.items() %} 28 |
  • {% if '$ref' in v %} 29 | {{ k }} 30 | {% else %} 31 | {{ k }}: {{ v['type'] }} 32 | {% endif %} 33 | {% endfor %} 34 |
35 |
36 |
37 | 38 | {% include "footer.html" %} 39 | -------------------------------------------------------------------------------- /tipg/templates/tilematrixset.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

{{ response.title or response.id }}

22 | 23 |
24 |
25 |
    26 | {% for key in ['title', 'description', 'id', 'uri', 'crs', 'wellKnownScaleSet', 'orderedAxes'] %} 27 | {% if response[key] %} 28 |
  • {{ key }}: {{ response[key] }}
  • 29 | {% endif %} 30 | {% endfor %} 31 | 32 |
  • Nb TileMatrices: {{ response.tileMatrices|count }}
  • 33 |
  • Min level: {{ response.tileMatrices[0].id }}
  • 34 |
  • Max level: {{ response.tileMatrices[-1].id }}
  • 35 |
  • Origin: {{ response.tileMatrices[0].pointOfOrigin }}
  • 36 |
  • Tile size: {{ [response.tileMatrices[0].tileWidth, response.tileMatrices[0].tileHeight] }}
  • 37 | 38 |
39 |
40 |
41 |
42 | Loading... 43 |
44 |
45 |
46 | 47 | 95 | {% include "footer.html" %} 96 | -------------------------------------------------------------------------------- /tipg/templates/tilematrixsets.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

{{ template.title }}TileMatrixSets

22 | 23 |

This API implements TileMatrixSets that are listed below.

24 | 25 |

Links

26 |
    27 | {% for tms in response.tileMatrixSets %} 28 |
  • {{ tms.id }}
  • 29 | {% endfor %} 30 |
31 | 32 | {% include "footer.html" %} 33 | -------------------------------------------------------------------------------- /tipg/templates/tileset.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

{{ response.title}}

22 | 23 |
24 |
25 | 26 |

Properties

27 |
  • DataType: {{ response.dataType }}
  • 28 |
  • CRS: {{ response.crs }}
  • 29 | 30 |

    TileMatrixSet Limits

    31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | {% for tms in response.tileMatrixSetLimits %} 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | {% endfor %} 49 |
    LevelminTileRowmaxTileRowminTileColmaxTileCol
    {{ tms.tileMatrix }}{{ tms.minTileRow }}{{ tms.maxTileRow }}{{ tms.minTileCol }}{{ tms.maxTileCol }}
    50 | 51 |

    Links

    52 |
      53 | {% for link in response.links %} 54 | {% if link.rel != 'self' %} 55 |
    • {{ link.title }}
    • 56 | {% endif %} 57 | {% endfor %} 58 |
    59 | 60 |
    61 |
    62 |
    63 | Loading... 64 |
    65 |
    66 |
    67 | 68 | 126 | {% include "footer.html" %} 127 | -------------------------------------------------------------------------------- /tipg/templates/tilesets.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} 2 | {% if params %} 3 | {% set urlq = url + '?' + params + '&' %} 4 | {% else %} 5 | {% set urlq = url + '?' %} 6 | {% endif %} 7 | 8 | 20 | 21 |

    {{ template.title }} TileSet list

    22 | 23 |

    Links

    24 | 29 | 30 | 31 | {% include "footer.html" %} 32 | --------------------------------------------------------------------------------