The "seismictooltip" web service provides an information about a tooltip of a seismic dataset.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/seismic/{seismicuniqueId}/tooltip
where
datasourcetype: type of a datasource, i.e. geofiles, s3, etc.
datasource: unique id of a datasource
seismicuniqueid: unique id of a seismic
Here is an example response. This response has been formatted to improve readability
{
"from": {
"actor": "akka://DefaultActorSystemControllerActorSystem:FindSeismicTooltipByUniqueIdJsonActor:SeismicTooltipResponse for FindSeismicTooltipByUniqueIdRequest:FindSeismicTooltipByUniqueIdRequest{klass1=AbstractSeismicTooltipFinder, sourceName=84e10999-60f4-4aff-83cd-7e880d24d866, uniqueId=ce223400-7900-4d3d-a7fb-6eb50057baf6, sourceType=mongo}"
},
"data": {
"id": "ce223400-7900-4d3d-a7fb-6eb50057baf6",
"content": [
{
"name": "Name",
"value": "Gullfaks_Amplitude.xgy"
}
],
"links": [
{
"rel": "self",
"relEntity": "v1/schema/int/properties",
"href": "/ivaap/api/ds/mongo/v1/sources/84e10999-60f4-4aff-83cd-7e880d24d866/wells/ce223400-7900-4d3d-a7fb-6eb50057baf6/tooltip",
"children": false,
"hasProjectEntityChildren": false,
"isProjectEntity": false
}
]
}
}
The id entry is the unique id of a seismic.
The content entry provides an information about a tooltip of a seismic dataset. The tooltip is identified by name attribute. The value attribute specifies a description of the tooltip.
The links section provides a HATEOAS link to this service.
If the specified seismicuniqueid doesn't match a valid seismic dataset, no JSON response will be provided. The HTTP response will only show a "InvalidUniqueId" (error 404) in its headers.
The content of this web service is pluggable so that information specific to your data format can be included. To add your own content, extend the com.interactive.ivaapapi.json.AbstractJsonBuilder class.