Exploring Deck 195 Prefix’s Vessel ID:89¶
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 '89' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['89'] 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 | ||
AVP-10 | 1943-06-24 12:00:00 | https://en.wikipedia.org/wiki/USS_Barnegat_(AV... |
AVP-11 | 1942-11-01 20:00:00 | https://en.wikipedia.org/wiki/USS_Biscayne_(AV... |
AVP-13 | 1942-05-27 20:00:00 | https://en.wikipedia.org/wiki/USS_Mackinac_(AV... |
AVP-1 | 1942-02-05 08:00:00 | https://en.wikipedia.org/wiki/USS_Lapwing_(AVP... |
AVP-21 | 1942-06-20 12:00:00 | https://en.wikipedia.org/wiki/USS_Humboldt_(AV... |
AVP-22 | 1944-05-03 20:00:00 | https://en.wikipedia.org/wiki/USS_Matagorda_(A... |
AVP-23 | 1944-08-03 20:00:00 | https://en.wikipedia.org/wiki/USS_Absecon_(AVP... |
AVP-24 | 1944-02-12 20:00:00 | https://en.wikipedia.org/wiki/USS_Chincoteague... |
AVP-29 | 1944-12-15 08:00:00 | https://en.wikipedia.org/wiki/USS_Rockaway_(AV... |
AVP-2 | 1942-01-04 20:00:00 | https://en.wikipedia.org/wiki/USS_Heron_(AVP-2 ) |
AVP-3 | 1942-04-27 08:00:00 | https://en.wikipedia.org/wiki/USS_Thrush_(AVP-3 ) |
AVP-41 | 1945-08-30 20:00:00 | https://en.wikipedia.org/wiki/USS_Greenwich Ba... |
AVP-49 | 1945-10-18 08:00:00 | https://en.wikipedia.org/wiki/USS_Orca_(AVP-49) |
AVP-4 | 1942-05-14 08:00:00 | https://en.wikipedia.org/wiki/USS_Avocet_(AVP-4 ) |
AVP-50 | 1945-01-18 12:00:00 | https://en.wikipedia.org/wiki/USS_Rehoboth_(AV... |
AVP-5 | 1942-03-27 08:00:00 | https://en.wikipedia.org/wiki/USS_Teal_(AVP-5 ) |
AVP-6 | 1944-01-04 12:00:00 | https://en.wikipedia.org/wiki/USS_Pelican_(AVP... |
AVP-7 | 1942-01-14 08:00:00 | https://en.wikipedia.org/wiki/USS_Swan_(AVP-7 ) |
AVP-8 | 1942-01-22 20:00:00 | https://en.wikipedia.org/wiki/USS_Gannet_(AVP-8 ) |
AVP-9 | 1944-06-27 12:00:00 | https://en.wikipedia.org/wiki/USS_Sandpiper_(A... |