-
Notifications
You must be signed in to change notification settings - Fork 9
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
Showing
3 changed files
with
38 additions
and
1 deletion.
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
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,22 @@ | ||
# Fetch a slice form a VDS | ||
|
||
Fetch a slice in any direction. Support 0-indexing of lines | ||
and index-by-annotation such as inline and crossline numbers | ||
and depth intervals. See model SliceData for more info | ||
on request parameters. | ||
|
||
## Response | ||
On success (200) the response consists of two parts, metadata | ||
and data | ||
|
||
### Metadata part | ||
*Content-Type: application/json* | ||
Metadata related to the returned slice, such as axis | ||
dimensions, labels and units and data type. See the | ||
Metadata data model. | ||
|
||
### Data part | ||
*Content-Type: application/octet-stream* | ||
A raw byte array containing the slice itself. The byte array needs to be parsed | ||
into a 2D array before use. Shape and type information is found in the metadata | ||
part. Data is always little endian. |