Skip to content

Commit a386f64

Browse files
committed
Add missing data product types to searchObjectResults
1 parent d42fa33 commit a386f64

File tree

1 file changed

+109
-4
lines changed

1 file changed

+109
-4
lines changed

src/app/common/columnForMenu.ts

Lines changed: 109 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,12 +1125,117 @@ export const ColumnForResource: {[key: string]: object} = {
11251125
title: "Data product type",
11261126
type: "stringArray",
11271127
options: [
1128-
{ title: "S-57 Electronic Navigational Chart (ENC)", value: "S57" },
1129-
{ title: "S-101 Electronic Navigational Chart (ENC)", value: "S101" },
1130-
{ title: "S-102 Bathymetric Surface", value: "S102" }
1128+
{
1129+
title: 'S-57 Electronic Navigational Chart (ENC)',
1130+
value: 'S57',
1131+
},
1132+
{
1133+
title: 'S-101 Electronic Navigational Chart (ENC)',
1134+
value: 'S101',
1135+
},
1136+
{
1137+
title: 'S-102 Bathymetric Surface',
1138+
value: 'S102',
1139+
},
1140+
{
1141+
title: 'S-104 Water Level Information for Surface Navigation',
1142+
value: 'S104',
1143+
},
1144+
{
1145+
title: 'S-111 Surface Currents',
1146+
value: 'S111',
1147+
},
1148+
{
1149+
title: 'S-122 Marine Protected Areas (MPAs)',
1150+
value: 'S122',
1151+
},
1152+
{
1153+
title: 'S-123 Marine Radio Services',
1154+
value: 'S123',
1155+
},
1156+
{
1157+
title: 'S-124 Navigational Warnings',
1158+
value: 'S124',
1159+
},
1160+
{
1161+
title: 'S-125 Marine Navigational Services',
1162+
value: 'S125',
1163+
},
1164+
{
1165+
title: 'S-126 Marine Physical Environment',
1166+
value: 'S126',
1167+
},
1168+
{
1169+
title: 'S-127 Marine Traffic Management',
1170+
value: 'S127',
1171+
},
1172+
{
1173+
title: 'S-128 Catalogue of Nautical Products',
1174+
value: 'S128',
1175+
},
1176+
{
1177+
title: 'S-129 Under Keel Clearance Management (UKCM)',
1178+
value: 'S129',
1179+
},
1180+
{
1181+
title: 'S-131 Marine Harbour Infrastructure',
1182+
value: 'S131',
1183+
},
1184+
{
1185+
title: 'S-210 Inter-VTS Exchange Format',
1186+
value: 'S210',
1187+
},
1188+
{
1189+
title: 'S-211 Port Call Message Format',
1190+
value: 'S211',
1191+
},
1192+
{
1193+
title: 'S-212 VTS Digital Information Service',
1194+
value: 'S212',
1195+
},
1196+
{
1197+
title: 'S-401 Inland ENC',
1198+
value: 'S401',
1199+
},
1200+
{
1201+
title: 'S-402 Bathymetric Contour Overlay for Inland ENC',
1202+
value: 'S402',
1203+
},
1204+
{
1205+
title: 'S-411 Sea Ice Information',
1206+
value: 'S411',
1207+
},
1208+
{
1209+
title: 'S-412 Weather Overlay',
1210+
value: 'S412',
1211+
},
1212+
{
1213+
title: 'S-413 Marine Weather Conditions',
1214+
value: 'S413',
1215+
},
1216+
{
1217+
title: 'S-414 Marine Weather Observations',
1218+
value: 'S414',
1219+
},
1220+
{
1221+
title: 'S-421 Route Plan',
1222+
value: 'S421',
1223+
},
1224+
{
1225+
title: 'Route Plan',
1226+
value: 'RTZ',
1227+
},
1228+
{
1229+
title: 'Electronic Port Clearance',
1230+
value: 'EPC',
1231+
},
1232+
{
1233+
title: 'Other data types not covered in this table',
1234+
value: 'OTHER',
1235+
},
11311236
],
11321237
description: "Data product type defined in IEC 63173-2 SECOM standard",
1133-
visibleFrom: ["edit", "edit-new"]
1238+
visibleFrom: ["edit", "edit-new", "detail"]
11341239
},
11351240
organizationId: {
11361241
title: "Organization ID",

0 commit comments

Comments
 (0)