Exploring Deck 195 Prefix’s Vessel ID:88

Please visit the Table of Contents for a complete listing of vessel classes to explore.

Please visit the Summary for a description of the project and how to use the maps

%run deck195_ppnnn_FOSDICparser.py '88' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['88'] into be plotted

Explore Prefix subset with all ships plotted at the same time, color coding is SST value (grey if unavailable)

sst = gv.Dataset(subgroup,['datetime','water_injection_temperature_degF','Type-Hull','History','shipclass'])
tiles = gv.tile_sources.EsriTerrain
points = sst.to(gv.Points, ['longitude', 'latitude'], ['datetime','water_injection_temperature_degF','Type-Hull','Name','History'])
tiles * points.opts(
    color='water_injection_temperature_degF', cmap='reds',
    tools=['hover'], global_extent=False, width=800, height=600, colorbar=True)

Explore Prefix subset ship by ship - color coding is SST value (grey if unavailable)

sst = gv.Dataset(subgroup,['datetime','water_injection_temperature_degF','Type-Hull','History','shipno'])
tiles = gv.tile_sources.EsriTerrain
points = sst.to(gv.Points, ['longitude', 'latitude'], ['datetime','water_injection_temperature_degF','Type-Hull','Name','History'])
tiles * points.opts(
    color='water_injection_temperature_degF', cmap='reds',
    tools=['hover'], global_extent=False, width=800, height=600, colorbar=True, title='ppnnn : '+prefix[0]+'xxx')
#ship list, first datapoint date and link to Wiki entry
subgroup[['datetime','Type-Hull','History']].groupby('Type-Hull').first()
datetime History
Type-Hull
ARS-13 1943-12-02 20:00:00 https://en.wikipedia.org/wiki/USS_Anchor_(ARS-13)
ARS-15 1944-05-23 20:00:00 https://en.wikipedia.org/wiki/USS_Extractor_(A...
ARS-20 1945-06-22 08:00:00 https://en.wikipedia.org/wiki/USS_Chain_(ARS-20)
ARS-21 1945-03-14 08:00:00 https://en.wikipedia.org/wiki/USS_Curb_(ARS-21)
ARS-23 1945-02-25 08:00:00 https://en.wikipedia.org/wiki/USS_Deliver_(ARS...
ARS-32 1943-01-19 08:00:00 https://en.wikipedia.org/wiki/USS_Brant_(ARS-32)
ARS-36 1945-06-27 12:00:00 https://en.wikipedia.org/wiki/USS_Swivel_(ARS-36)
ARS-37 1945-01-31 08:00:00 https://en.wikipedia.org/wiki/USS_Tackle_(ARS-37)
ARS-4 1945-02-15 12:00:00 vessel not identified
ARS-5 1945-05-30 08:00:00 https://en.wikipedia.org/wiki/USS_Diver_(ARS-5)