Exploring Deck 195 Prefix’s Vessel ID:51

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 '51' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['51'] 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
AK-100 1943-11-09 20:00:00 https://en.wikipedia.org/wiki/USS_Lynx_(AK-100)
AK-101 1944-03-23 12:00:00 https://en.wikipedia.org/wiki/USS_Lyra_(AK-101)
AK-102 1943-09-16 08:00:00 https://en.wikipedia.org/wiki/USS_Triangulum_(...
AK-103 1944-05-02 12:00:00 https://en.wikipedia.org/wiki/USS_Sculptor_(AK...
AK-105 1943-09-20 08:00:00 https://en.wikipedia.org/wiki/USS_Naos_(AK-105)
... ... ...
AK-94 1944-12-01 08:00:00 https://en.wikipedia.org/wiki/USS_Mintaka_(AK-94)
AK-95 1943-07-18 12:00:00 https://en.wikipedia.org/wiki/USS_Murzim_(AK-95)
AK-96 1943-07-02 08:00:00 https://en.wikipedia.org/wiki/USS_Sterope_(AK-96)
AK-97 1943-07-03 12:00:00 https://en.wikipedia.org/wiki/USS_Serpens_(AK-97)
AK-99 1943-11-16 08:00:00 https://en.wikipedia.org/wiki/USS_Bootes_(AK-99)

62 rows × 2 columns