Exploring Deck 195 Prefix’s Vessel ID:12

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 '12' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['12'] 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
DD-106 1943-12-01 08:00:00 https://en.wikipedia.org/wiki/USS_Chew_(DD-106)
DD-109 1944-02-29 20:00:00 https://en.wikipedia.org/wiki/USS_Crane_(DD-109)
DD-113 1944-07-27 20:00:00 https://en.wikipedia.org/wiki/USS_Rathburne_(D...
DD-115 1942-01-26 12:00:00 https://en.wikipedia.org/wiki/USS_Waters_(DD-115)
DD-116 1942-03-30 20:00:00 https://en.wikipedia.org/wiki/USS_Dent_(DD-116)
... ... ...
DD-873 1945-06-19 12:00:00 https://en.wikipedia.org/wiki/USS_Hawkins_(DD-...
DD-874 1945-06-21 12:00:00 https://en.wikipedia.org/wiki/USS_Duncan_(DD-874)
DD-876 1945-07-19 20:00:00 https://en.wikipedia.org/wiki/USS_Rogers_(DD-876)
DD-878 1945-08-17 08:00:00 https://en.wikipedia.org/wiki/USS_Vesole_(DD-878)
DD-880 1945-11-13 08:00:00 https://en.wikipedia.org/wiki/USS_Dyess_(DD-880)

308 rows × 2 columns