Exploring Deck 195 Prefix’s Vessel ID:39

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 '39' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['39'] 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
AVD-1 1944-09-04 08:00:00 https://en.wikipedia.org/wiki/USS_Childs_(AVD-1)
AVD-10 1944-11-15 08:00:00 https://en.wikipedia.org/wiki/USS_Ballard_(AVD...
AVD-11 1944-02-02 12:00:00 https://en.wikipedia.org/wiki/USS_Thornton_(AV...
AVD-12 1942-02-10 08:00:00 https://en.wikipedia.org/wiki/USS_Gillis_(AVD-12)
AVD-13 1942-03-19 08:00:00 https://en.wikipedia.org/wiki/USS_Greene_(AVD-13)
AVD-14 1942-01-20 20:00:00 https://en.wikipedia.org/wiki/USS_McFarland_(A...
AVD-2 1942-12-10 08:00:00 https://en.wikipedia.org/wiki/USS_Williamson_(...
AVD-3 1942-10-14 20:00:00 https://en.wikipedia.org/wiki/USS_George_E._Ba...
AVD-4 1942-01-06 20:00:00 https://en.wikipedia.org/wiki/USS_Clemson_(AVD-4)
AVD-5 1942-02-20 08:00:00 https://en.wikipedia.org/wiki/USS_Goldsborough...
AVD-6 1942-01-26 12:00:00 https://en.wikipedia.org/wiki/USS_Hulbert_(AVD-6)
AVD-7 1942-01-11 08:00:00 https://en.wikipedia.org/wiki/USS_William_B._ ...
AVD-8 1942-11-29 20:00:00 https://en.wikipedia.org/wiki/USS_Belknap_(AVD-8)
AVD-9 1942-11-24 08:00:00 https://en.wikipedia.org/wiki/USS_Osmond_Ingra...