Exploring Deck 195 Prefix’s Vessel ID:31

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 '31' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['31'] 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
PF-1 1943-07-18 20:00:00 https://en.wikipedia.org/wiki/USS_Asheville_(P...
PF-10 1945-01-07 20:00:00 https://en.wikipedia.org/wiki/USS_Brownsville_...
PF-12 1944-06-14 08:00:00 https://en.wikipedia.org/wiki/USS_Casper_(PF-12)
PF-13 1944-09-21 12:00:00 https://en.wikipedia.org/wiki/USS_Pueblo_(PF-13)
PF-24 1944-10-07 12:00:00 https://en.wikipedia.org/wiki/USS_Muskegon_(PF...
PF-3 1945-02-28 20:00:00 https://en.wikipedia.org/wiki/USS_Tacoma_(PF-3)
PF-32 1944-07-31 20:00:00 https://en.wikipedia.org/wiki/USS_Woonsocket_(...
PF-34 1944-01-20 20:00:00 https://en.wikipedia.org/wiki/USS_Long_Beach_(...
PF-38 1944-11-20 20:00:00 https://en.wikipedia.org/wiki/USS_Coronado_(PF...
PF-47 1945-01-09 20:00:00 https://en.wikipedia.org/wiki/USS_Gallup_(PF-47)
PF-5 1944-08-19 20:00:00 https://en.wikipedia.org/wiki/USS_Hoquiam_(PF-5)
PF-53 1944-08-29 20:00:00 https://en.wikipedia.org/wiki/USS_Machias_(PF-53)
PF-9 1944-08-02 08:00:00 https://en.wikipedia.org/wiki/USS_Pocatello_(P...