Exploring Deck 195 Prefix’s Vessel ID:01¶
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 '01' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['01'] 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 | ||
BB-111 | 1945-03-04 08:00:00 | vessel not identified |
BB-145 | 1945-04-05 20:00:00 | vessel not identified |
BB-242 | 1944-02-26 08:00:00 | vessel not identified |
BB-262 | 1943-02-14 12:00:00 | vessel not identified |
BB-33 | 1942-12-01 12:00:00 | https://en.wikipedia.org/wiki/USS_Arkansas_(BB... |
BB-34 | 1944-11-30 12:00:00 | https://en.wikipedia.org/wiki/USS_New_York_(BB... |
BB-35 | 1945-01-11 20:00:00 | https://en.wikipedia.org/wiki/USS_Texas_(BB-35) |
BB-36 | 1945-04-29 08:00:00 | https://en.wikipedia.org/wiki/USS_Nevada_(BB-36) |
BB-38 | 1943-11-14 20:00:00 | https://en.wikipedia.org/wiki/USS_Pennsylvania... |
BB-40 | 1945-10-07 20:00:00 | https://en.wikipedia.org/wiki/USS_New_Mexico_(... |
BB-41 | 1942-01-13 08:00:00 | https://en.wikipedia.org/wiki/USS_Mississippi_... |
BB-42 | 1944-10-09 12:00:00 | https://en.wikipedia.org/wiki/USS_Idaho_(BB-42) |
BB-44 | 1944-06-02 08:00:00 | https://en.wikipedia.org/wiki/USS_California_(... |
BB-45 | 1942-11-11 20:00:00 | https://en.wikipedia.org/wiki/USS_Colorado_(BB... |
BB-46 | 1944-08-17 20:00:00 | https://en.wikipedia.org/wiki/USS_Maryland_(BB... |
BB-56 | 1944-02-17 08:00:00 | https://en.wikipedia.org/wiki/USS_Washington_(... |
BB-58 | 1944-02-12 20:00:00 | https://en.wikipedia.org/wiki/USS_Indiana_(BB-58) |
BB-59 | 1944-05-10 20:00:00 | https://en.wikipedia.org/wiki/USS_Massachusett... |
BB-60 | 1945-01-03 20:00:00 | https://en.wikipedia.org/wiki/USS_Alabama_(BB-60) |
BB-61 | 1944-01-08 12:00:00 | https://en.wikipedia.org/wiki/USS_Iowa_(BB-61) |
BB-63 | 1945-01-04 12:00:00 | https://en.wikipedia.org/wiki/USS_Missouri_(BB... |