Exploring Deck 195 Prefix’s Vessel ID:02

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 '02' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['02'] 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
CA-130 1945-06-27 08:00:00 https://en.wikipedia.org/wiki/USS_Bremerton_(C...
CA-136 1945-05-18 20:00:00 https://en.wikipedia.org/wiki/USS_Chicago_(CA-...
CA-221 1944-05-10 12:00:00 vessel not identified
CA-24 1943-01-21 20:00:00 https://en.wikipedia.org/wiki/USS_Pensacola_(C...
CA-27 1943-09-06 12:00:00 https://en.wikipedia.org/wiki/USS_Chester_(CA-27)
CA-28 1942-01-13 20:00:00 https://en.wikipedia.org/wiki/USS_Louisville_(...
CA-29 1942-01-22 12:00:00 https://en.wikipedia.org/wiki/USS_Chicago_(CA-29)
CA-31 1945-02-09 08:00:00 https://en.wikipedia.org/wiki/USS_Augusta_(CA-31)
CA-32 1943-03-18 12:00:00 https://en.wikipedia.org/wiki/USS_New_Orleans_...
CA-35 1944-01-23 08:00:00 https://en.wikipedia.org/wiki/USS_Indianapolis...
CA-38 1943-03-09 20:00:00 https://en.wikipedia.org/wiki/USS_San_Francisc...
CA-39 1942-06-10 20:00:00 https://en.wikipedia.org/wiki/USS_Quincy_(CA-39)
CA-68 1943-09-28 08:00:00 https://en.wikipedia.org/wiki/USS_Baltimore_(C...
CA-69 1945-07-03 20:00:00 https://en.wikipedia.org/wiki/USS_Boston_(CA-69)
CA-70 1944-01-20 20:00:00 https://en.wikipedia.org/wiki/USS_Canberra_(CA...
CA-71 1945-03-10 12:00:00 https://en.wikipedia.org/wiki/USS_Quincy_(CA-71)
CA-72 1945-01-19 20:00:00 https://en.wikipedia.org/wiki/USS_Pittsburgh_(...
CA-73 1945-05-27 08:00:00 https://en.wikipedia.org/wiki/USS_Saint_Paul_(...