-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into moment_restfreq
- Loading branch information
Showing
10 changed files
with
210 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/src/conf.py | ||
|
||
# We recommend specifying your dependencies to enable reproducible builds: | ||
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Sphinx==4.1.2 | ||
Sphinx==7.3.7 | ||
plantweb==1.2.1 | ||
sphinxcontrib-svg2pdfconverter==1.1.1 | ||
sphinx-rtd-theme==0.5.2 | ||
sphinxcontrib-svg2pdfconverter==1.2.2 | ||
sphinx-rtd-theme==2.0.0 |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
syntax = "proto3"; | ||
package CARTA; | ||
|
||
import "open_file.proto"; | ||
|
||
message RemoteFileRequest { | ||
// File ID | ||
sfixed32 file_id = 1; | ||
// ID or keyword identifying the HiPS to use | ||
string hips = 2; | ||
// The WCS definition of the cutout, defined as a key-value dictionary JSON string | ||
string wcs = 3; | ||
// Width in pixels of the output image | ||
int32 width = 4; | ||
// Height in pixels of the output image | ||
int32 height = 5; | ||
// Name of the requested projection, eg: SIN, TAN, MOL, AIT, CAR, CEA, STG | ||
string projection = 6; | ||
// Size (FoV) of the cutout on the sky, in decimal degrees | ||
float fov = 7; | ||
// Right ascension in decimal degrees of the center of the output image | ||
float ra = 8; | ||
// Declination in decimal degrees of the center of the output image | ||
float dec = 9; | ||
// coordsys Coordinate frame system to be used for the projection | ||
string coordsys = 10; | ||
// Angle value (in decimal degrees) to be applied to the projection | ||
float rotation_angle = 11; | ||
// Name of the object the output image will be centered on. | ||
// The name will be resolved to coordinated by the Sesame service. | ||
string object = 12; | ||
} | ||
|
||
message RemoteFileResponse { | ||
// Defines whether the remote file was opened successfully | ||
bool success = 1; | ||
// Error message (if applicable) | ||
string message = 2; | ||
// Opened file information | ||
OpenFileAck open_file_ack = 3; | ||
} |
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