Exploring Deck 195 Prefix’s Vessel ID:46

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 '46' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['46'] 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
AG-12 1942-01-23 12:00:00 https://en.wikipedia.org/wiki/USS_Gold_Star_(A...
AG-29 1943-03-24 12:00:00 https://en.wikipedia.org/wiki/USS_Bear
AG-30 1942-02-07 08:00:00 https://en.wikipedia.org/wiki/USS_Bowditch_(AG...
AG-31 1944-12-15 08:00:00 https://en.wikipedia.org/wiki/USS_Argonne_(AG-31)
AG-32 1942-01-17 20:00:00 https://en.wikipedia.org/wiki/USS_Sumner_(AG-32)
AG-33 1942-12-28 12:00:00 https://en.wikipedia.org/wiki/USS_Kaula_(AG-33)
AG-42 1943-07-08 08:00:00 https://en.wikipedia.org/wiki/USS_Camanga_(AG-42)
AG-44 1943-10-09 12:00:00 https://en.wikipedia.org/wiki/USS_Malanao_(AG-44)
AG-46 1945-08-19 20:00:00 https://en.wikipedia.org/wiki/USS_Tuluran_(AG-46)
AG-66 1944-02-03 20:00:00 https://en.wikipedia.org/wiki/USS_Besboro_(AG-66)
AG-67 1943-09-23 08:00:00 https://en.wikipedia.org/wiki/USS_Antaeus_(AG-67)
AG-68 1945-01-01 08:00:00 https://en.wikipedia.org/wiki/USS_Basilan_(AG-68)
AG-70 1944-11-05 08:00:00 https://en.wikipedia.org/wiki/USS_Zaniah_(AG-70)
AG-97 1945-06-16 08:00:00 https://en.wikipedia.org/wiki/USS_Simpson_(AG-97)