Skip to content

Commit

Permalink
Deployed ad52740 with MkDocs version: 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Jun 26, 2023
0 parents commit 49df12e
Show file tree
Hide file tree
Showing 80 changed files with 28,580 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
172 changes: 172 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">


<link rel="shortcut icon" href="/img/favicon.ico">
<title>Global Imagery Browse Services (GIBS)</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet' type='text/css'>

<link rel="stylesheet" href="/css/theme.css" type="text/css" />
<link rel="stylesheet" href="/css/theme_extra.css" type="text/css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
<link href="/css/style.css" rel="stylesheet">
<link href="/css/loading-spinner.css" rel="stylesheet">

<script src="/js/jquery-2.1.1.min.js" defer></script>
<script src="/js/modernizr-2.8.3.min.js" defer></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>

</head>

<body class="wy-body-for-nav" role="document">

<div class="wy-grid-for-nav">


<nav data-toggle="wy-nav-shift" class="wy-nav-side stickynav">
<div class="wy-side-nav-search">
<a href="/." class="icon icon-home"> Global Imagery Browse Services (GIBS)</a>

</div>

<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul class="tocbase current">





<li class="navtree toctree-l1 inactive">
<a class="" href="/.">Introduction</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/available-visualizations/">Available Visualizations</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/access-basics/">Access Basics</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/access-advanced-topics/">Access Advanced Topics</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/gis-usage/">Accessing via GIS Applications</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/map-library-usage/">Accessing via Map Libraries and GDAL Scripts</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/python-usage/">Accessing via Python</a>
</li>




<li class="navtree toctree-l1 inactive">
<a class="" href="/contact-us/">Contact Us</a>
</li>

</ul>
</div>
&nbsp;
</nav>

<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">


<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="/.">Global Imagery Browse Services (GIBS)</a>
</nav>


<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="/.">Docs</a> &raquo;</li>


<li class="wy-breadcrumbs-aside">

</li>
</ul>
<hr/>
</div>
<div role="main">
<div class="section">


<h1 id="404-page-not-found">404</h1>

<p><strong>Page not found</strong></p>


</div>
</div>
<footer>


<hr/>

<div role="contentinfo">
<!-- Copyright etc -->

</div>

Built with <a href="http://www.mkdocs.org">MkDocs</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>

</div>
</div>

</section>

</div>

<div class="rst-versions" role="note" style="cursor: pointer">
<span class="rst-current-version" data-toggle="rst-current-version">



</span>
</div>
<script>var base_url = '/';</script>
<script src="/js/theme.js" defer></script>
<script src="/javascript/[email protected]" defer></script>
<script src="/javascript/overrides.js" defer></script>
<script src="/javascript/imagery-products.js" defer></script>
<script src="/javascript/components.js" defer></script>

</body>
</html>
113 changes: 113 additions & 0 deletions VectorMetadata_v1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"title": "Vector Metadata",
"description": "Vector Metadata Schema",
"type": "object",
"properties": {
"id": {
"description": "Unique identifier for the vector metadata.",
"type": "string",
"minLength": 1
},
"mvt_properties": {
"description": "List of properties that will appear in the MVT.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Identifier": {
"description": "The unique identifier of the MVT property.",
"type": "string",
"minLength": 1
},
"Title": {
"description": "A human readable title for the property.",
"type": "string",
"minLength": 1
},
"Description": {
"description": "A human readable description for the property.",
"type": "string",
"minLength": 1
},
"Units": {
"description": "The units value to be applied to the actual value of this property.",
"type": "string",
"minLength": 1
},
"DataType": {
"description": "The data type of this property.",
"type": "string",
"enum": ["int", "float", "string", "datetime"]
},
"ValueList": {
"description": "A listing of the possible valid values for a 'string' property type, if the property has a controlled list.",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1
},
"ValueRanges": {
"description": "A listing of mutually exclusive min and max value pairs representing ranges of valid values for the 'Integer', 'float', and 'datetime' property types.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Min": {
"description": "",
"type": ["number", "string"],
"minLength": 1
},
"Max": {
"description": "",
"type": ["number", "string"],
"minLength": 1
}
},
"required": ["Min", "Max"],
"additionalProperties": false
},
"minItems": 1
},
"ValueMap": {
"description": "A map of the possible valid values for 'string' or 'int' property types, and their associated description.",
"type": "object",
"patternProperties": {
"^.*$": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"Function": {
"description": "The property’s intended function as a part of the visualization product.",
"type": "string",
"enum": ["Describe", "Identify", "Style"]
},
"IsOptional": {
"description": "Indicates whether the property is optional.",
"type": "boolean"
},
"IsLabel": {
"description": "Indicates whether the property should be used to label the point in a user interface.",
"type": "boolean"
}
},
"anyOf": [
{},
{ "required": ["ValueRanges"] },
{ "required": ["ValueList"] },
{ "required": ["ValueMap"] }
],
"not": { "required": ["ValueRanges", "ValueList", "ValueMap"] },
"required": ["Identifier", "Title", "Description", "DataType", "Function", "IsOptional", "IsLabel"],
"additionalProperties": false
},
"minItems": 1
}
},
"required": ["id", "mvt_properties"],
"additionalProperties": false
}
Loading

0 comments on commit 49df12e

Please sign in to comment.