-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make html repr look like json repr * Make index start at 0 * Make sure little triangle shows up in jupyter notebook * Fix indentation * Add tests for more objects * Update some notebooks * Do not transform hrefs * Update changelog * Simplify html a bit * Remove a few spaces
- Loading branch information
Showing
22 changed files
with
3,658 additions
and
1,740 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
3,000 changes: 2,424 additions & 576 deletions
3,000
docs/tutorials/how-to-create-stac-catalogs.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% import 'Macros.jinja2' as macros %} | ||
|
||
<style> | ||
.pystac-summary { | ||
cursor: pointer; | ||
display:list-item; | ||
} | ||
.pystac-key { | ||
color: rgb(0, 128, 0); | ||
font-weight: 700; | ||
} | ||
.pystac-key-value { | ||
display: inline-block; | ||
margin: 0px 0.5em 0px 0px; | ||
} | ||
</style> | ||
<div class="jp-RenderedJSON jp-mod-trusted jp-OutputArea-output"> | ||
<div class="container" style="line-height: normal;"> | ||
<ul style="padding: 0px; margin: 0px; list-style: none; display: block;"> | ||
{% for key, value in dict.items() %} | ||
{% if value is iterable and (value is not string and value is not mapping) %} | ||
{{ macros.list(key, value) }} | ||
{% else %} | ||
{{ macros.scalar(key, value) }} | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.