Exploring Deck 195 Prefix’s Vessel ID:81

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 '81' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['81'] 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
AM-105 1945-02-26 08:00:00 https://en.wikipedia.org/wiki/USS_Pioneer_(AM-...
AM-109 1945-12-31 20:00:00 https://en.wikipedia.org/wiki/USS_Requisite_(A...
AM-127 1944-11-20 08:00:00 https://en.wikipedia.org/wiki/USS_Tumult_(AM-127
AM-136 1945-05-01 08:00:00 https://en.wikipedia.org/wiki/USS_Admirable_(A...
AM-137 1944-06-11 08:00:00 https://en.wikipedia.org/wiki/USS_Adopt_(AM-137)
AM-148 1945-01-30 08:00:00 https://en.wikipedia.org/wiki/USS_Astute_(AM-148)
AM-153 1944-08-13 08:00:00 https://en.wikipedia.org/wiki/USS_Buoyant_(AM-...
AM-164 1944-08-28 08:00:00 https://en.wikipedia.org/wiki/USS_Control_(AM-...
AM-235 1945-04-13 08:00:00 https://en.wikipedia.org/wiki/USS_Fixity_(AM-235)
AM-248 1945-07-15 08:00:00 https://en.wikipedia.org/wiki/USS_Incessant_(A...
AM-252 1945-08-21 08:00:00 https://en.wikipedia.org/wiki/USS_Instill_(AM-...
AM-258 1945-02-01 20:00:00 https://en.wikipedia.org/wiki/USS_Logic_(AM-258)