Exploring Deck 195 Prefix’s Vessel ID:50

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 '50' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['50'] 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
AH-1 1943-03-06 20:00:00 https://en.wikipedia.org/wiki/USS_Relief_(AH-1)
AH-10 1944-09-17 08:00:00 https://en.wikipedia.org/wiki/USS_Samaritan_(A...
AH-11 1944-11-11 12:00:00 https://en.wikipedia.org/wiki/USS_Refuge_(AH-11)
AH-13 1945-06-24 20:00:00 https://en.wikipedia.org/wiki/USS_Benevolence_...
AH-17 1945-08-07 20:00:00 https://en.wikipedia.org/wiki/USS_Sanctuary_(A...
AH-5 1942-03-19 08:00:00 https://en.wikipedia.org/wiki/USS_Solace_(AH-5)
AH-6 1944-06-28 20:00:00 https://en.wikipedia.org/wiki/USS_Comfort_(AH-6)
AH-9 1944-12-01 12:00:00 https://en.wikipedia.org/wiki/USS_Bountiful_(A...