-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2c73dd
commit 5e2ae5a
Showing
1 changed file
with
48 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,32 +4,63 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | ||
{% endblock %} | ||
{% block main %} | ||
|
||
<div class = "container"> | ||
<section class="section"> | ||
<h1 class="title">AIMMDB</h1> | ||
<h1 class="title">Explore from your web browser</h1> | ||
<h2 class="subtitle"> | ||
AIMMDB is a data access and search tool for multimodal scientific data built on top of [tiled](https://github.com/bluesky/tiled). | ||
Currently aimmdb is focused on xray absorption spectroscopy (XAS) data. | ||
Use a basic, data-oriented web interface to navigate Tiled. | ||
</h2> | ||
<a href="ui/browse/" target="_blank" rel="noreferrer"> | ||
<button class="button is-large is-responsive is-link"> | ||
Try it | ||
</button> | ||
</a> | ||
</section> | ||
<section class="section"> | ||
<h1 class="title">Explore from Python</h1> | ||
<h2 class="subtitle"> | ||
Install and use Tiled's Python client from Python, IPython, or Jupyter. | ||
</h2> | ||
<pre><code>$ pip install "tiled[client]" | ||
$ python | ||
>>> from tiled.client import from_uri | ||
>>> client = from_uri("{{ root_url }}")</code></pre> | ||
{% if binder_link %} | ||
Alternatively, try it in the cloud on <a href="{{ binder_link }}" target="_blank" rel="noreferrer">Binder</a>. | ||
{% endif %} | ||
</section> | ||
|
||
<section class="section"> | ||
<h1 class="title">Funding Acknowledgement</h1> | ||
<h1 class="title">Explore the API</h1> | ||
<h2 class="subtitle"> | ||
Tiled includes interactive <em>OpenAPI</em> documentation you can use in your web browser. | ||
</h2> | ||
<p class="box"> | ||
This research is based upon work supported by the U.S. Department of Energy, Office of Science, Office Basic Energy Sciences, under Award Number FWP PS-030. This research used resources of the Center for Functional Nanomaterials (CFN), which is a U.S. Department of Energy Office of Science User Facility, at Brookhaven National Laboratory under Contract No. DE-SC0012704. | ||
The Tiled API can be accessed from any Internet-connected software, | ||
including graphical programs that accept URLs and commandline | ||
utilities like <code>wget</code> and <code>curl</code>. | ||
</p> | ||
<a href="{{ root_url }}/docs" target="_blank" rel="noreferrer"> | ||
<button class="button is-large is-responsive is-link"> | ||
Try it | ||
</button> | ||
</a> | ||
|
||
</div> | ||
|
||
<div> | ||
</section> | ||
<section class="section"> | ||
<h1 class="title">Usage</h1> | ||
<h1 class="title">Learn</h1> | ||
<h2 class="subtitle"> | ||
The database can be browsed by navigating to the | ||
<a href="{{ root_url }}/browse.html" target="_blank" rel="noreferrer"> | ||
Try it | ||
</a> | ||
page. This page allows you to nagivate datasets. | ||
<p> | ||
For tutorials, guides, and more details, see Tiled's project documentation. | ||
</p> | ||
</h2> | ||
<p class="box"> | ||
Like Jupyter Notebook, Tiled is something you can easily run yourself, on your laptop. | ||
Tiled can also scale up for large multi-user deployment, like JupyterHub. | ||
</p> | ||
<a href="https://blueskyproject.io/tiled/" target="_blank" rel="noreferrer"> | ||
<button class="button is-large is-responsive is-link"> | ||
Read | ||
</button> | ||
</a> | ||
</section> | ||
</div> | ||
{% endblock %} |