Skip to content

Commit 94b5cc8

Browse files
author
cranko
committed
Release commit created with Cranko.
+++ cranko-release-info-v1 [[projects]] qnames = ["@wwtelescope/research-app-messages", "npm"] version = "0.17.2" age = 1 [[projects]] qnames = ["@wwtelescope/engine-types", "npm"] version = "0.6.7" age = 0 [[projects]] qnames = ["@wwtelescope/engine", "npm"] version = "7.29.2" age = 0 [[projects]] qnames = ["@wwtelescope/embed-common", "npm"] version = "0.3.5" age = 1 [[projects]] qnames = ["@wwtelescope/embed-creator", "npm"] version = "0.5.0" age = 1 [[projects]] qnames = ["@wwtelescope/astro", "npm"] version = "0.2.5" age = 0 [[projects]] qnames = ["@wwtelescope/engine-helpers", "npm"] version = "0.16.0" age = 1 [[projects]] qnames = ["@wwtelescope/engine-pinia", "npm"] version = "0.9.0" age = 1 [[projects]] qnames = ["@wwtelescope/research-app", "npm"] version = "0.16.0" age = 1 [[projects]] qnames = ["@wwtelescope/embed", "npm"] version = "1.7.0" age = 1 +++
2 parents 976c8a1 + 306a63c commit 94b5cc8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2603
-1257
lines changed

.eslintrc.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,7 @@ module.exports = {
1010
'plugin:@typescript-eslint/recommended'
1111
],
1212
rules: {
13-
"no-unused-vars": [
14-
"warn", {
15-
"args": "all",
16-
"argsIgnorePattern": "^_",
17-
"varsIgnorePattern": "^_"
18-
}
19-
],
13+
"no-unused-vars": "off", // this rule is superseded by typescript-eslint's version
2014
"@typescript-eslint/no-unused-vars": [
2115
"warn", {
2216
"args": "all",

astro/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/astro 0.2.5 (2023-11-03)
2+
3+
- Update to the latest typedoc, and other improvements to the documentation
4+
infrastructure (#274, #275, #276, #277, #278, @pkgw).
5+
6+
17
# @wwtelescope/astro 0.2.4 (2023-09-15)
28

39
- Update sponsorship branding and "front door" email address (#269, #271, @pkgw).

astro/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@typescript-eslint/parser": "^5.38.1",
1111
"eslint": "^8.24.0",
1212
"rimraf": "^3",
13-
"typedoc": "0.23.20",
13+
"typedoc": "0.25.1",
1414
"typescript": "~4.8.4"
1515
},
1616
"homepage": "https://worldwidetelescope.org/home/",
@@ -32,5 +32,5 @@
3232
},
3333
"type": "module",
3434
"types": "./dist/src/index.d.ts",
35-
"version": "0.2.4"
35+
"version": "0.2.5"
3636
}

ci/azure-main-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
parameters:
77
- name: 'zolaVersion'
8-
default: '0.13.0'
8+
default: '0.15.3'
99
type: string
1010

1111
jobs:

docs/engine/config.toml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
base_url = "//docs.worldwidetelescope.org/webgl-reference/1/"
1+
base_url = "https://docs.worldwidetelescope.org/webgl-reference/latest/"
22
title = "WWT WebGL Engine Reference Manual"
33
description = "The WorldWide Telescope WebGL Engine reference manual."
44
theme = "wwtguide"
55

6+
[markdown]
7+
highlight_code = true
8+
69
[extra]
7-
github_base = "//github.com/WorldWideTelescope/wwt-webgl-engine"
8-
google_analytics_id = "UA-107473046-3"
10+
github_base = "https://github.com/WorldWideTelescope/wwt-webgl-engine"
11+
google_analytics_id = "G-D1J49XX0CV"
912
stylesheets = ["extras.css"]

docs/engine/content/apiref/_index.md

+14
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,17 @@ packages:
1717

1818
[Vue]: https://vuejs.org/
1919
[Pinia]: https://pinia.vuejs.org/
20+
21+
If you’re interested in writing code to control a WWT display, you might want to
22+
check out the following sections of the documentation:
23+
24+
- For pure JavaScript without any frameworks (the [hosted JavaScript
25+
model](../getting-started/hosted-javascript-model.md)) see
26+
[@wwtelescope/engine](./engine/).
27+
- To control an embedded instance of the research app (the [embedded app
28+
model](../getting-started/embedded-app-model.md)) see
29+
[@wwtelescope/research-app-messages](./research-app-messages/).
30+
- For a custom component-based web app built with Vue (the [Vue component
31+
model](../getting-started/vue-component-model.md)) see [the WWT Pinia
32+
interface](engine-pinia/functions/engineStore.html#md:the-wwt-pinia-interface)
33+
in [@wwtelescope/engine-pinia](./engine-pinia/).

docs/engine/content/freestanding-mode/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "Freestanding Mode"
3-
weight = 100
3+
weight = 10000
44
sort_by = "weight"
55
insert_anchor_links = "right"
66
+++

docs/engine/content/getting-started/_index.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,29 @@ insert_anchor_links = "right"
77

88
There are a range of ways that you can use the WWT WebGL engine, depending on
99
the level of sophistication that you’re trying to achieve and the tools you’re
10-
prepared to use.
10+
prepared to use. If you’re considering a WWT-based project, it’s important to be
11+
aware of the range of options.
1112

1213
- If you want to deploy a generic interface for astronomical data visualization,
1314
you can probably skip most of the coding by simply **[embedding the WWT
1415
research app](@/getting-started/embedded-app-model.md)** and not building your
1516
own custom UI.
1617
- Prototyping a custom UI with basic HTML and JavaScript, and no build tools or
1718
fancy infrastructure? You may want to use the **[hosted JavaScript
18-
model](@/getting-started/hosted-javascript-model.md)**. But for serious
19+
model](@/getting-started/hosted-javascript-model.md)**. But for complex
1920
applications, we recommend adopting more sophisticated tooling.
2021
- If you’re using [npm] or another JavaScript package manager, a slightly more
2122
elaborate approach is the **[bundled TypeScript
2223
model](@/getting-started/bundled-typescript-model.md)**: import
2324
the {{engineapi(p="index.html",t="@wwtelescope/engine")}} package into your
2425
project and interface with it using the [TypeScript] language.
25-
- If the bundled TypeScript approach sounds good *and* you can use [Vue] with
26-
[Pinia] — or if you don’t know that you *can’t* use them — we strongly
27-
recommend the **[Vue/Pinia component
28-
model](@/getting-started/vue-component-model.md)**.
26+
- For the most complex applications, we suggest a reactive, component-based
27+
architecture. The **[Vue/Pinia component
28+
model](@/getting-started/vue-component-model.md)** provides a clean way to
29+
include WWT in apps based on the [Vue 3] framework using the [Pinia] state
30+
management system.
2931

3032
[npm]: https://npmjs.com/
3133
[TypeScript]: https://www.typescriptlang.org/
32-
[Vue]: https://vuejs.org/
34+
[Vue 3]: https://vuejs.org/
3335
[Pinia]: https://pinia.vuejs.org/

docs/engine/content/getting-started/bundled-typescript-model.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ await wwt.waitForReady();
5757
```
5858

5959
After the engine has signaled readiness, you can start controlling it.
60-
The {{helpersapi(p="classes/wwtinstance.html",t="WWTInstance")}} class offers
60+
The {{helpersapi(p="classes/WWTInstance.html",t="WWTInstance")}} class offers
6161
two conveniences:
6262

6363
1. Its `ctl`, `si`, `lm`, and `stc` fields provide access to the core components
6464
of the WWT engine as exposed in {{engineapi(p="index.html",t="@wwtelescope/engine")}}.
6565
2. The class also provides convenience wrappers around certain APIs that benefit from
6666
more idiomatic JavaScript/TypeScript usage, as in the async-aware
67-
method {{helpersapi(p="classes/wwtinstance.html#waitforready",t="waitForReady()")}}.
67+
method {{helpersapi(p="classes/WWTInstance.html#waitForReady",t="waitForReady()")}}.
6868

69-
Check out the {{helpersapi(p="classes/wwtinstance.html",t="WWTInstance")}} API
69+
Check out the {{helpersapi(p="classes/WWTInstance.html",t="WWTInstance")}} API
7070
reference to explore the possibilities!

docs/engine/content/getting-started/hosted-javascript-model.md

+18-17
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,23 @@ Here’s simple HTML that will get you going:
1313
```html
1414
<!doctype html>
1515
<html lang="en">
16-
<head>
16+
<head>
1717
<title>My First WWT Application</title>
1818
<script src="https://web.wwtassets.org/engine/7/wwtsdk.js"></script>
19-
<!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
20-
</head>
21-
<body>
22-
<div id="wwtcanvas" style="width: 750px; height: 750px"></div>
19+
</head>
20+
<body>
21+
<div id="wwtcanvas" style="width: 750px; height: 750px; background-color: #000"></div>
2322

2423
<script type="text/javascript">
25-
function init_wwt() {
26-
wwtlib.WWTControl.initControl('wwtcanvas');
27-
}
24+
function init_wwt() {
25+
const builder = new wwtlib.WWTControlBuilder("wwtcanvas");
26+
builder.startRenderLoop(true);
27+
builder.create();
28+
}
2829
29-
window.addEventListener('load', init_wwt);
30+
window.addEventListener("load", init_wwt);
3031
</script>
31-
</body>
32+
</body>
3233
</html>
3334
```
3435

@@ -38,9 +39,9 @@ The key elements are:
3839
engine. You interface with this library via a global variable named
3940
`wwtlib`.
4041
2. A `<div>` element that becomes home for the WWT viewport.
41-
3. A JavaScript shim that calls the
42-
function {{engineapi(p="modules/wwtcontrol.html#initcontrol",t="WWTControl.initControl")}}
43-
to initialize the engine and start it rendering.
42+
3. A JavaScript shim that uses the
43+
{{engineapi(p="classes/WWTControlBuilder.html",t="WWTControlBuilder")}}
44+
class to initialize the engine and start it rendering.
4445

4546
With this minimal initialization, you get a viewer that allows you to pan around
4647
and use the scroll wheel to zoom in, providing an interface reminiscent of
@@ -51,11 +52,11 @@ full power of the WWT rendering engine through the JavaScript APIs that are
5152
documented in the {{engineapi(p="index.html",t="@wwtelescope/engine")}}
5253
TypeScript module, namespaced inside the `wwtlib` variable. The majority of your
5354
programmatic interactions with the engine will occur
54-
the {{engineapi(p="modules/wwtcontrol.html",t="WWTControl")}}
55+
the {{engineapi(p="classes/WWTControl-1.html",t="WWTControl")}}
5556
class, accessed through
56-
the {{engineapi(p="modules/wwtcontrol.html#singleton",t="wwtlib.WWTControl.singleton")}}
57+
the {{engineapi(p="variables/WWTControl.singleton.html",t="wwtlib.WWTControl.singleton")}}
5758
singleton value, and
58-
the {{engineapi(p="classes/scriptinterface.html",t="ScriptInterface")}} class,
59+
the {{engineapi(p="classes/ScriptInterface.html",t="ScriptInterface")}} class,
5960
returned by
60-
the {{engineapi(p="modules/wwtcontrol.html#initcontrol",t="wwtlib.WWTControl.initControl")}}
61+
the {{engineapi(p="classes/WWTControlBuilder.html#create",t="WWTControlBuilder.create()")}}
6162
function.

docs/engine/content/getting-started/vue-component-model.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ title = "The Vue/Pinia Component Model"
33
weight = 400
44
+++
55

6-
The main WWT applications are built using the [Vue] UI framework using the
7-
[Pinia] state management library. If you use these too, you can take advantage of
8-
a lot of useful tools for creating your own customized WWT-based applications.
6+
The main WWT applications are built using the [Vue 3] UI framework with the
7+
[Pinia] state management library. If you use these too, you can take advantage
8+
of a lot of useful tools for creating your own customized WWT-based
9+
applications.
910

10-
[Vue]: https://vuejs.org/
11+
[Vue 3]: https://vuejs.org/
1112
[Pinia]: https://pinia.vuejs.org/
1213

1314
We’ll assume that you already have a skeleton Vue app in place. To add WWT to
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
+++
2+
title = "WWT API Tutorial"
3+
weight = 200
4+
sort_by = "weight"
5+
insert_anchor_links = "right"
6+
+++
7+
8+
In the [Getting Started](@/getting-started/_index.md) section, we discussed
9+
different ways that you can use WWT in a project. In this tutorial, we’ll dive
10+
in with an introduction to the capabilities of WWT engine and common tasks you
11+
might want to accomplish using it.
12+
13+
This tutorial will assume familiarity with the terminal, a code editor like [VS
14+
Code], and core elements of the web platform like the JavaScript language and
15+
CSS.
16+
17+
[VS Code]: https://code.visualstudio.com/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
+++
2+
title = "Loading an Image"
3+
weight = 400
4+
+++
5+
6+
Now that we’ve played with WWT’s background image, let’s load up an image in the
7+
foreground. Edit the JavaScript code of your `index.html` file to read as
8+
follows. Once again, changes relative to the previous section are subtly
9+
highlighted:
10+
```js,hl_lines=13-14 17-22
11+
var script_interface, wwt;
12+
13+
function init_wwt() {
14+
const builder = new wwtlib.WWTControlBuilder("wwtcanvas");
15+
builder.startRenderLoop(true);
16+
script_interface = builder.create();
17+
script_interface.add_ready(on_ready);
18+
}
19+
20+
function on_ready() {
21+
console.log("WWT is ready!");
22+
wwt = wwtlib.WWTControl.singleton;
23+
script_interface.add_collectionLoaded(on_wtml_loaded);
24+
script_interface.loadImageCollection("https://data1.wwtassets.org/packages/2023/07_jwst/weic2316a/index.wtml");
25+
}
26+
27+
function on_wtml_loaded() {
28+
wwt.setForegroundImageByName("Rho Ophiuchi cloud complex");
29+
script_interface.setForegroundOpacity(100);
30+
script_interface.add_arrived(on_arrived);
31+
wwt.gotoRADecZoom(16.442, -24.385, 1.06, false);
32+
}
33+
34+
function on_arrived() {
35+
wwt.setBackgroundImageByName("PanSTARRS");
36+
}
37+
38+
window.addEventListener("load", init_wwt);
39+
```
40+
41+
When you reload your app, you should see WWT zoom in on and load up [a lovely
42+
JWST image][weic2316a] of ρ Oph:
43+
44+
[weic2316a]: https://esawebb.org/images/weic2316a/
45+
46+
![WWT showing Rho Oph as imaged by JWST](rho-oph.jpg)
47+
48+
Here, the API function
49+
{{engineapi(p="classes/ScriptInterface.html#loadImageCollection",t="ScriptInterface.loadImageCollection()")}}
50+
allows us to extend WWT’s built-in corpus of data with additional data sets. We
51+
register a callback with
52+
{{engineapi(p="classes/ScriptInterface.html#add_collectionLoaded",t="ScriptInterface.add_collectionLoaded()")}}
53+
to get notified when the information has been downloaded, at which point we can
54+
tell the engine to change the foreground to the new image that it has just
55+
learned about.
56+
57+
<div class="callout callout-note">
58+
59+
Try changing the opacity setting to, say, 50, to transparently blend the
60+
foreground on top of the background.
61+
62+
</div>
63+
64+
If you load up the URL used here,
65+
66+
> <https://data1.wwtassets.org/packages/2023/07_jwst/weic2316a/index.wtml>
67+
68+
you will see that it is another [WTML collection][wtml], which is stored in
69+
[XML] format. That WTML file, in turn, points at the actual imagery data, which
70+
have been processed into WWT’s cloud-friendly tiled formats. This two-step
71+
approach is an important element of WWT’s data model: while the actual data
72+
files that WWT displays might be large and slow to download, the WTML files that
73+
tell the engine *about* data are small and efficient.
74+
75+
[wtml]: https://docs.worldwidetelescope.org/data-guide/1/data-file-formats/collections/
76+
[XML]: https://en.wikipedia.org/wiki/XML
77+
78+
<div class="callout callout-note">
79+
80+
Once again, other coding models provide slightly more sophisticated interfaces.
81+
The
82+
{{helpersapi(p="classes/WWTInstance.html#loadImageCollection",t="WWTInstance.loadImageCollection()")}}
83+
and
84+
{{piniaapi(p="functions/engineStore.html#loadImageCollection",t="engineStore().loadImageCollection()")}}
85+
APIs return promises that resolve to
86+
{{engineapi(p="classes/Folder.html",t="Folder")}} objects, which provide direct
87+
access to the information retrieved from the WTML URL.
88+
89+
</div>
90+
91+
<div class="callout callout-note">
92+
93+
WWT can overlay more than two images at once if needed: it has a generic system
94+
for adding visual
95+
{{piniaapi(p="functions/engineStore.html#md:general-layer-management",t="layers")}},
96+
which can be stacked and combined in arbitrary numbers. “Imageset layers” add
97+
imagery using the same underlying framework as the background/foreground system.
98+
99+
</div>
100+
101+
102+
# Getting Data into WWT
103+
104+
These examples are suggesting that WTML files are pretty important to WWT.
105+
Indeed, they are. The WWT project includes a lot of support tooling to help you
106+
manage them:
107+
108+
- The [toasty] Python library and CLI tool provide lots of tools for importing
109+
images into WWT’s formats, including producing appropriate WTML metadata
110+
- The [wwt_data_formats] Python library and associated `wwtdatatool` CLI program
111+
provide some lower-level tools for working with various WWT data and file
112+
formats, including WTML files.
113+
114+
See also the [WWT Data Guide].
115+
116+
[toasty]: https://toasty.readthedocs.io/
117+
[wwt_data_formats]: https://wwt-data-formats.readthedocs.io/
118+
[WWT Data Guide]: https://docs.worldwidetelescope.org/data-guide/1/
119+
120+
121+
# Callback Hell
122+
123+
You might note that we’re piling up a lot of callbacks here. We sure are!
124+
There’s a reason that web developers talk about [callback
125+
hell](http://callbackhell.com) — this style of programming rapidly becomes very
126+
hard to scale and maintain. **This is why we strongly recommend avoiding plain
127+
JavaScript when building complex WWT apps.** More sophisticated models like the
128+
[Vue component model](@/getting-started/vue-component-model.md), or even the
129+
[TypeScript model](@/getting-started/bundled-typescript-model.md) with `async`
130+
syntax, take a bit more effort to learn, but provide much better tools for
131+
managing the complex timing concerns of modern web apps.
Loading
Loading

0 commit comments

Comments
 (0)